X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fgen_sql_patches.php;h=24bd20b76f0851532d4f571faa5e6a2883d9f707;hb=e68f2f7b0a55fa31eb7ce5baf844dca40f11abea;hp=8fd4b43047bacaad899070e04138e004578b25f6;hpb=7ff28f7292939ad1a61b9b7a4e3398ff6310a3d0;p=mailer.git diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index 8fd4b43047..24bd20b76f 100644 --- a/inc/gen_sql_patches.php +++ b/inc/gen_sql_patches.php @@ -1,7 +1,7 @@ Cookie: ".get_session('u_hash')."
Test: ".$test); + // Generate secret key from a randomized string + $secretKey = sha1(generateHash(mt_rand(128, 256))); - // Write $file_hash to database - $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_config SET file_hash='%s' WHERE config=0 LIMIT 1", - array($file_hash), __FILE__, __LINE__); - - // Also create .htaccess file - $fp = @fopen(PATH."inc/.secret/.htaccess", 'w') or mxchange_die("Cannot write to .htaccess file!"); - if ($fp != false) { - // Add deny line to file - fwrite($fp, "Deny from all"); - - // Close the file - fclose($fp); - } + // File hash was never created + writeToFile($FQFN, $secretKey); + // Is the file there? + if (isFileReadable($FQFN)) { // Also update configuration - $_CONFIG['secret_key'] = $secretKey; unset($secretKey); - $_CONFIG['file_hash'] = $file_hash; unset($file_hash); - - // Don't miss the admin hash here... - $passHash = generatePassString(get_session('admin_md5')); - set_session('admin_md5', $passHash); - } -} - -// -?> \ No newline at end of file + setConfigEntry('secret_key', $secretKey); + updateConfiguration('file_hash', $fileHash); + + // Remove variables + unset($secretKey); + unset($fileHash); + } // END - if +} // END - if + +// @TODO Rewrite this to a filter +if ((isExtensionInstalledAndNewer('cache', '0.1.2')) && (isCacheInstanceValid())) { + // Destroy some cache files + if ($GLOBALS['cache_instance']->loadCacheFile('config')) $GLOBALS['cache_instance']->removeCacheFile(); + if ($GLOBALS['cache_instance']->loadCacheFile('extension')) $GLOBALS['cache_instance']->removeCacheFile(); + if ($GLOBALS['cache_instance']->loadCacheFile('modules')) $GLOBALS['cache_instance']->removeCacheFile(); +} // END - if + +// [EOF] +?>