Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Heroic CMS

Newbie Spellweaver
Joined
Mar 3, 2011
Messages
30
Reaction score
5
Easiest way.

Go to:
Download < Development > build.

Extract the folder to your Desktop.

Go to MySQL and make a new database.
Upload Heroic Two.sql file to your database.

Go to "Ready To Use" folder

Run "Install Before Using.msi" that will install Node.
Ignore if you already have that installed.

When that is done, then you can run
"Run Before Using.bat"

Configure the < Config.ini > file. Make sure your Mysql details are correct.

Then run:
Heroic.exe

That is the easiest way, out of the box.

Different way.

- Download and install Node.
- Go to the folder "Backend".
- Open up CMD (Command Prompt)
- Change your location of your CMD to the Backend folder.

Example in Console: cd C:\Users\YourUserName\Desktop\Heroic\Backend

- Write in console: npm install
Shokkato - Heroic CMS - RaGEZONE Forums


(It should start to download Modules.)
Shokkato - Heroic CMS - RaGEZONE Forums


- Move your config.ini file to the Backend folder.
Configure it and make sure your MySQL details are correct.
(Has to exist in order to get it running.) Can be found in the "Ready to Use" folder.

- Write in console: node build/boot.js
Shokkato - Heroic CMS - RaGEZONE Forums


Shokkato - Heroic CMS - RaGEZONE Forums

Well done. Open up your browser and write in localhost.


I'm very new myself to Node, never used it before. But didnt take me very long time to figure it out.
If I said something that is wrong, please correct me. I'm no expert when it comes to this.

Don't get it working? Let us know. :)
 
Last edited:
Upvote 0
Joined
Sep 10, 2011
Messages
778
Reaction score
138
Easiest way.

Go to:
Download < Development > build.

Extract the folder to your Desktop.

Go to MySQL and make a new database.
Upload Heroic Two.sql file to your database.

Go to "Ready To Use" folder

Run "Install Before Using.msi" that will install Node.
Ignore if you already have that installed.

When that is done, then you can run
"Run Before Using.bat"

Configure the < Config.ini > file. Make sure your Mysql details are correct.

Then run:
Heroic.exe

That is the easiest way, out of the box.

Different way.

- Download and install Node.
- Go to the folder "Backend".
- Open up CMD (Command Prompt)
- Change your location of your CMD to the Backend folder.

Example in Console: cd C:\Users\YourUserName\Desktop\Heroic\Backend

- Write in console: npm install
Shokkato - Heroic CMS - RaGEZONE Forums


(It should start to download Modules.)
Shokkato - Heroic CMS - RaGEZONE Forums


- Move your config.ini file to the Backend folder.
Configure it and make sure your MySQL details are correct.
(Has to exist in order to get it running.) Can be found in the "Ready to Use" folder.

- Write in console: node build/boot.js
Shokkato - Heroic CMS - RaGEZONE Forums


Shokkato - Heroic CMS - RaGEZONE Forums

Well done. Open up your browser and write in localhost.


I'm very new myself to Node, never used it before. But didnt take me very long time to figure it out.
If I said something that is wrong, please correct me. I'm no expert when it comes to this.

Don't get it working? Let us know. :)
A few things,
The tutorial for the heroic.exe is spot on.

However,
When you want to use the full source this means you’re most likely going to edit the code. For that you would want to run npm run debug

abd if you’re planning on editing the front end code, you’d use gulp watch. It’s important not to change the folder structure including the front end and backend folder names as that’s how the compiled front end goes back into the websites dist.

Once you finish with your edite, you’d run npm run build and pkg . Which will produce a new heroic.exe

i apologize for not being much help with this release, however for any feature requests or ideas, bug reports feel free to join the official discord. I will not be able to help much until I finish moving which will take a few weeks (1-2)
 
Upvote 0
Newbie Spellweaver
Joined
Mar 3, 2011
Messages
30
Reaction score
5
A few things,
The tutorial for the heroic.exe is spot on.

However,
When you want to use the full source this means you’re most likely going to edit the code. For that you would want to run npm run debug

abd if you’re planning on editing the front end code, you’d use gulp watch. It’s important not to change the folder structure including the front end and backend folder names as that’s how the compiled front end goes back into the websites dist.

Once you finish with your edite, you’d run npm run build and pkg . Which will produce a new heroic.exe

i apologize for not being much help with this release, however for any feature requests or ideas, bug reports feel free to join the official discord. I will not be able to help much until I finish moving which will take a few weeks (1-2)

Thank you!
Now i know that. :)
 
Upvote 0
Back
Top