X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fgen_sql_patches.php;h=91dd06ea859147f5a3eb3917b459aaa033b7ba31;hp=a12ead7b731adc15a87cdaaddf8577eee7b0209b;hb=25b4a580b4c7e0d429eb8e436785d3c2ef304f8e;hpb=cca98f57dff720b174d21d071cee8303462485d7 diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index a12ead7b73..91dd06ea85 100644 --- a/inc/gen_sql_patches.php +++ b/inc/gen_sql_patches.php @@ -1,7 +1,7 @@ Cookie: ".get_session('u_hash')."
Test: ".$test); + if (isFileReadable($FQFN)) { + //* DEBUG: */ removeFile($FQFN); + //* DEBUG: */ $test = hexdec(getSession('u_hash')) / hexdec($secretKey); + //* DEBUG: */ $test = generateHash(str_replace('.', '', $test)); + //* DEBUG: */ die("Secret-Key: ".$secretKey."
Cookie: ".getSession('u_hash')."
Test: ".$test); - // Write $file_hash to database - SQL_QUERY_ESC("UPDATE `{!MYSQL_PREFIX!}_config` SET file_hash='%s' WHERE config=0 LIMIT 1", - array($file_hash), __FILE__, __LINE__); + // Write $fileHash to database + updateConfiguration('file_hash', $fileHash); // Generate FQFN for .htaccess file - $FQFN = PATH."inc/.secret/.htaccess"; + $FQFN = sprintf("%sinc/.secret/.htaccess", + getConfig('PATH') + ); // Is the .htaccess file there? - if (!FILE_READABLE($FQFN)) { + if (!isFileReadable($FQFN)) { // Also create .htaccess file - WRITE_FILE($FQFN, "Deny from all\n"); + writeToFile($FQFN, "Deny from all\n"); } // END - if // Also update configuration - $_CONFIG['secret_key'] = $secretKey; unset($secretKey); - $_CONFIG['file_hash'] = $file_hash; unset($file_hash); + setConfigEntry('secret_key', $secretKey); + + // Remove variables + unset($secretKey); + unset($fileHash); } // END - if } // END - if