diff options
author | Kevin Chabowski <kevin@kch42.de> | 2011-07-12 20:50:37 +0200 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2011-07-12 20:50:37 +0200 |
commit | 70389c5e60bce048cb97f2c91c83fc210cf44797 (patch) | |
tree | 54f951c63ca3283af9479a53c86ca512951b0c75 | |
download | ratatoeskr-cms-70389c5e60bce048cb97f2c91c83fc210cf44797.tar.gz ratatoeskr-cms-70389c5e60bce048cb97f2c91c83fc210cf44797.tar.bz2 ratatoeskr-cms-70389c5e60bce048cb97f2c91c83fc210cf44797.zip |
Initial commit
-rw-r--r-- | .htaccess | 0 | ||||
-rw-r--r-- | index.php | 7 | ||||
-rw-r--r-- | ratatoeskr/config.php | 8 |
3 files changed, 15 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/.htaccess diff --git a/index.php b/index.php new file mode 100644 index 0000000..3eb9468 --- /dev/null +++ b/index.php @@ -0,0 +1,7 @@ +<?php + +header("Content-Type: text/text"); + +print_r($_REQUEST); + +?> diff --git a/ratatoeskr/config.php b/ratatoeskr/config.php new file mode 100644 index 0000000..1691b4a --- /dev/null +++ b/ratatoeskr/config.php @@ -0,0 +1,8 @@ +<?php + +$conf["mysql"]["db"] = "s_db_47"; +$conf["mysql"]["user"] = "dbuser_47"; +$conf["mysql"]["passwd"] = "DfXVQBoVOBPbLlL"; +$conf["mysql"]["prefix"] = "ratatoeskr_"; + +?> |