diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-02-25 15:46:36 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-02-25 15:46:36 +0000 |
| commit | ca791961aa9664a6138954015f48bd417d372150 (patch) | |
| tree | 9f4be3812d47d4d2c7ca858ced63383f05a88696 /phpBB/develop/insert_server_info.php | |
| parent | 1e5de88c6f888da18b6745975d0aa5711787781d (diff) | |
| download | forums-ca791961aa9664a6138954015f48bd417d372150.tar forums-ca791961aa9664a6138954015f48bd417d372150.tar.gz forums-ca791961aa9664a6138954015f48bd417d372150.tar.bz2 forums-ca791961aa9664a6138954015f48bd417d372150.tar.xz forums-ca791961aa9664a6138954015f48bd417d372150.zip | |
Not relevant to the 2.2 branch
git-svn-id: file:///svn/phpbb/trunk@3523 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/develop/insert_server_info.php')
| -rw-r--r-- | phpBB/develop/insert_server_info.php | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/phpBB/develop/insert_server_info.php b/phpBB/develop/insert_server_info.php deleted file mode 100644 index f7d9fcc08e..0000000000 --- a/phpBB/develop/insert_server_info.php +++ /dev/null @@ -1,64 +0,0 @@ -<?php - -// -// Security message: -// -// This script is potentially dangerous. -// Remove or comment the next line (die(".... ) to enable this script. -// Do NOT FORGET to either remove this script or disable it after you have used it. -// -die("Please read the first lines of this script for instructions on how to enable it"); - -// -// Do not change anything below this line. -// -$phpbb_root_path = "../"; -include($phpbb_root_path . 'extension.inc'); -include($phpbb_root_path . 'common.'.$phpEx); - -echo "Inserting new config vars<br /><br />\n"; - -echo "server_name :: "; -flush(); -$sql = "INSERT INTO " . CONFIG_TABLE . " - (config_name, config_value) VALUES ('server_name', 'www.myserver.tld')"; -if( !$db->sql_query($sql) ) -{ - print "Failed inserting server_name config ... probably exists already<br />\n"; -} -else -{ - echo "DONE<br />\n"; -} - -echo "script_path :: "; -flush(); -$sql = "INSERT INTO " . CONFIG_TABLE . " - (config_name, config_value) VALUES ('script_path', '/phpBB2/')"; -if( !$db->sql_query($sql) ) -{ - print "Failed inserting script_path config ... probably exists already<br />\n"; -} -else -{ - echo "DONE<br />\n"; -} - -echo "server_port :: "; -flush(); -$sql = "INSERT INTO " . CONFIG_TABLE . " - (config_name, config_value) VALUES ('server_port', '80')"; -if( !$db->sql_query($sql) ) -{ - print "Failed inserting server_port config ... probably exists already<br />\n"; -} -else -{ - echo "DONE<br />\n"; -} - -$db->sql_close(); - -echo "<br />COMPLETE<br />\n"; - -?> |
