xHabbo Running Error.

Berk

berkibap#4233
Developer
Oct 17, 2015
863
190
Hey, I'm trying to run xHabbo and I have ran
npm run
nodemon index.js --exec babel-node --presets es2015,stage-2
but it says package 'compression' was not found. I tried to npm install compression --save but it didn't work .

How may I solve that?
Thanks.
@LeChris
 
Fixed that, but now it says clean exit, how may I solve that?
 
As requested,
F2SdZGo0T9yCkFVYKCXn8A.png


To install this :
 

LeChris

i drain to live
Sep 30, 2013
2,745
1,328
Oh yeah, there’s something messed up with the install check on this version. Best bet is to disable the install check on the application.js and just launch the website
 

Berk

berkibap#4233
Developer
Oct 17, 2015
863
190
Oh yeah, there’s something messed up with the install check on this version. Best bet is to disable the install check on the application.js and just launch the website
Code:
 const status = new Install;
        Application.environment();
        if (!status.completed)
        {

            Application.console();

            new Website;
        }
Removed this but it still says that, and when I set installation.json to false it says 'home' is not defined.
Well. Try to fix them! :up:
 

LeChris

i drain to live
Sep 30, 2013
2,745
1,328
Code:
 const status = new Install;
        Application.environment();
        if (!status.completed)
        {

            Application.console();

            new Website;
        }
Removed this but it still says that, and when I set installation.json to false it says 'home' is not defined.
Well. Try to fix them! :up:
Because the global variables was removed
 

Berk

berkibap#4233
Developer
Oct 17, 2015
863
190
Yeah fixed everything, install works like a charm (you need to skip queries/run and import sql yourself.)

And now When I go to /login it renders 500 error. I don't know why tbh.

Actual working code (not really) :

Hoping someone can help :up:
 

LeChris

i drain to live
Sep 30, 2013
2,745
1,328
Yeah fixed everything, install works like a charm (you need to skip queries/run and import sql yourself.)

And now When I go to /login it renders 500 error. I don't know why tbh.

Actual working code (not really) :

Hoping someone can help :up:
500 means dB issue
 

Users who are viewing this thread

Top