Techdaan fixed CSS POG POG

This commit is contained in:
dginovker 2020-09-23 22:39:08 -04:00
parent 9ebc73902e
commit 9599486ad0
3 changed files with 3 additions and 3 deletions

View File

@ -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)

View File

@ -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;

View File

@ -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
?>