Make a website for your PocketMine server fully free !
Go to file
Ad5001 a5835e3b4b Fixing meging problems 2016-12-27 12:06:27 +01:00
.github Create ISSUE_TEMPLATE 2016-05-29 19:14:06 +02:00
.vscode 1.5 ? :D 2016-08-26 17:40:14 +03:00
resources 1.5, 2nd & last commit ! 2016-08-26 18:29:32 +03:00
src/Ad5001/Online Fixing meging problems 2016-12-27 12:06:27 +01:00
.gitattributes 🎉 Added .gitattributes & .gitignore files 2016-05-29 18:45:46 +02:00
.gitignore 1.5 ? :D 2016-08-26 17:40:14 +03:00
LICENSE 1.6 starting 2016-12-27 12:04:35 +01:00
README.md 1.5 README DOC 2016-08-26 19:24:46 +03:00
config.yml 1.5 ? :D 2016-08-26 17:40:14 +03:00
index.html 1.4 starting... 2016-07-30 17:09:31 +03:00
plugin.yml 1.6 starting 2016-12-27 12:04:35 +01:00

README.md

#Online


Create multiple website for your PocketMine server fully free !

This plugin is under the BoxOfDevs LICENSE v1.0

Create your first website

WHEN UPDATING TO 1.5, REMEMBER TO DELETE YOUR CONFIG! A NEW ONE WILL BE GENERATED WITH NEW VALUES !

To create a website, go to the config.yml -> plugins/Online/config.yml
Then add a new website in the "Domains" array (by default, there is localhost) with your website name so it looks like this (for this whole example, we will use example.com but local servers are already here by default. It's if you want to add a new one):

Domains:
   - localhost
   - example.com

Restart your server and a new folder in the Online folder will be generated! It will be your new website path.

By default, there will be an index.html, a 404.html and a 403.html.

You can modify them, add more files, ect....

If you're using an external domain, portforward your machine (later on the lesson) , then go to your registar CPanel and go to records -> add new record and then put it to CName to your portforwarded machine. All of this isn't required localy.

After have done this, connect yourself to the website by your browser: http://example.com:Your port (by default 80).

To make everyone able to see your website, you need to port forward your website (if you have port forwared your server, you will also need to do this) . Note that the port forward should be automatized on windows devices using UPnP.

There are tons of tutorials on how to portforward something (google it !) but there are some specific config to do.

And there you go ! You've created your first website with online ! Good job !

Config of the port foreward:
Name: HTTP
Start port: Your port (by default 80)
End port: Your port (by default 80)
Protocol: TPC

Start your server and profit of your new website !

Add a parked domain

You've created a website but you want to broadcast it on multiple websites? No problem ! Look at the tutorial below and see how to do this !

  1. You need first to have done you're first website
  2. Go to your config (still the same and add a new element: parked domain: current domain (there is by default 0.0.0.0 and 127.0.0.1 that points to localhost) So it looks like this (for this example, example.net is the parked domain and example.com is the existing one):
Parked domains:
  0.0.0.0: localhost
  127.0.0.1: localhost
  example.net: example.com
  1. Then, go to your parked domain registar CPanel and add a new CName record pointing to the machine IP.
  2. There you go, you created a parked domain !

Tips & tricks:

You might have seen that the tutorials above haven't covered the whole configs and stuff ! Here are some tips & tricks that what are they here for !

  1. Changing port: Yes, it's not always easy to use port 80 ! It's often binded and stuffs... CHange the value of "port" in the config and set it to your new port and it will work fine !
  2. Errors and index: Change index, 404 and 403 to customize even more you're website ! Change them to customisze even more your website ! 404 is when a page is not found, 403 is when the user is not allowed to view this page. You can change them to make it even more customisable !
  3. Denied pages: Sometimes, you don't want the user to see some pages so add them to the denied page array to block them from being viewed ! Example:
denied-pages:
   - website/path/to/file
  1. Set the server still open even if the server's stop: Set the KillOnShutdown to false. What does that mean? Simply that the websites and domains will still remain even if the server is offline. BUT remember that those issues can happend: Server got stuck on disable: Problem at starting. Unable to stop it on hoster. So DON'T MODIFY IT IF YOU'RE NOT USING A VPS OR LOCALLY. Command to stop it :
    Windows:
FOR /F "tokens=5" %P IN (\'netstat -a -n -o ^| findstr 0.0.0.0:<PORT>') DO TaskKill.exe /F /PID %P

MACOSX and LINUX:

kill -kill `lsof -t -i tcp:<port`

======= That's it so I hoope you will enjoy my plugin !

(I know that @Falk created a plugin called Volt that does same but this plugin works in a completly different way (that make a lot less laggy and a lot less heavier in space !) and it's fully coded by myself in PHP7)