Skip to content

Installation

samerton edited this page Dec 6, 2015 · 17 revisions

To install NamelessMC, make sure you have these things:

  • A web server running PHP 5.3+, with PDO, MySQLnd, mcrypt, GD and cURL modules installed
  • A MySQL database

If you wish to use NamelessMC to it's full extent, you can also install these optional things:

Infractions plugins:

Donation stores:

Installation Guide:

  1. Download NamelessMC from here and upload it to your web server. Please note, this must be installed in the root as this is a standalone package.
  2. Load the index page in your web browser, you will be redirected to the installer.
  3. Simply follow the installation.
  4. Done! Enjoy using NamelessMC.

Youtube Video (credit to Root3287)

https://www.youtube.com/watch?v=s4R_4jWerLU

Common Problems:

Error 1

Error: The requested URL was not found on this server

Meaning:

Your webserver is not configured to allow .htaccess files

Fix:

Varies depending on the server configuration, however the following SSH commands should do it for Ubuntu:

sudo a2enmod rewrite

service apache2 restart

Error 2

Error: No connection could be made because the target machine actively refused it.

Meaning:

Your MySQL information is incorrect, the MySQL database is on a different server and the IP is blocked by MySQL. then there are also the possibility that the firewall is blocking it. Finally it's listening on a different IP.

Fix:

Look at your MySQL information and fix the information if there is an information error. Else try to query this in

GRANT ALL ON *.* to user@'%' IDENTIFIED BY 'password';

GRANT ALL ON *.* to user@localhost IDENTIFIED BY 'password';

Where you can change the user@ip and password

Else change

Localhost

To

127.0.0.1