Skip to content
This repository has been archived by the owner on Oct 9, 2018. It is now read-only.

Installation

Timothy Gibbons edited this page Jan 11, 2016 · 24 revisions

To install NamelessMC, make sure you have these things:

  • A web server running PHP 5.3+, with PDO, 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:

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:

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

UPDATED VIDEO

https://www.youtube.com/watch?v=s4R_4jWerLU&feature=youtu.be

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 here is a guide for Ubuntu and Apache. Otherwise the rewrite engine is not on Enable mod_rewrite Stacktrace.

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

Clone this wiki locally