diff --git a/README.md b/README.md index 70a3825f7..21f293826 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,6 @@ 1. Import runescape.sql into a database named "runescape" 2. Edit includes/config.php as needed -3. Run `php -S 127.0.0.1:4000 index.php` +3. Run `php -S 0.0.0.0:4000` Originally made by [jarryd229](https://github.com/jarryd229) diff --git a/runescape/header.php b/runescape/header.php index 582102a24..6dab0f62a 100644 --- a/runescape/header.php +++ b/runescape/header.php @@ -55,7 +55,7 @@ $skin1 = dbevaluate("SELECT theme FROM versioning;"); switch ($skin1) { case 0: $skin = "default"; break; - case 1: $skin = "halloween"; + case 1: $skin = "default"; break; case 2: $skin = "christmas"; break; diff --git a/runescape/includes/config.php b/runescape/includes/config.php index fb81a24f1..ccde779ec 100644 --- a/runescape/includes/config.php +++ b/runescape/includes/config.php @@ -3,5 +3,5 @@ $config['database.host'] = "localhost"; $config['database.user'] = "root"; $config['database.pass'] = ""; $config['database.name'] = "runescape"; -$config['site.address'] = "http://localhost/runescape"; +$config['site.address'] = "http://localhost:4000"; // Was http://localhost/runescape ?>