X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fgen_sql_patches.php;h=a358c8d74a31730107d78eb09ce915688c3d742c;hb=2a54b10c7d9da3b47d245b2911bed17b21a70414;hp=1de8cc4fafb6944a6e82354006b1b75d8236fd5d;hpb=e01fcf1ca8ddeb72af76465df3ef72301a1cdae7;p=mailer.git diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index 1de8cc4faf..a358c8d74a 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 $fileHash to database - SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_config` SET file_hash='%s' WHERE config=0 LIMIT 1", - array($fileHash), __FILE__, __LINE__); + updateConfiguration('file_hash', $fileHash); // Generate FQFN for .htaccess file $FQFN = sprintf("%sinc/.secret/.htaccess", - constant('PATH') + 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 setConfigEntry('secret_key', $secretKey); - setConfigEntry('file_hash' , $fileHash); // Remove variables unset($secretKey);