Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/hopeinstoughton_books/_oldsite/inc/ |
Upload File : |
<?php
require './include.php';
header('Content-type: text/plain');
// This creates the index information required for updating records using inc.databasestuff.php
// SPECIFIC TO MYSQL
global $FIELDNAME, $DATABASE_NAME;
$FIELDNAME = "tables_in_" . strtolower($DATABASE_NAME);
$DATABASE->Open();
$tables = $DATABASE->Query("show tables from $DATABASE_NAME", '__table', array());
DatabaseError();
$thetable = array();
foreach($tables as $tablename) {
$keyorder = $DATABASE->Query("show keys from $tablename", '__keys', array());
$thetable[strtolower($tablename)] = $keyorder;
}
$DATABASE->Close();
$data = var_export($thetable, TRUE);
$info = '<?'."php\n// This file is automatically created by setup.databasekeys.php, and needs to be updated whenever index structure changes\n\n";
$info .= "\$INDEXES = " . $data . ";\n?" . '>';
$fp = fopen("$BASE/inc/data/inc.indexsettings.php", 'w');
fwrite($fp, $info);
fclose($fp);
echo 'done.';
function __table(&$ITEM, &$param) {
global $FIELDNAME;
$param[] = $ITEM[$FIELDNAME];
return 0;
}
function __keys(&$ITEM, &$param) {
if ($ITEM['key_name'] == 'PRIMARY') {
$n = $ITEM['seq_in_index'] + 0;
$param[$n] = strtolower($ITEM['column_name']);
}
return 0;
}
?>