X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fgen_sql_patches.php;h=1e3f278d58127d0c9418dd1fe310293b86a2bd0d;hp=c6d3a5373b3908b798a579dd547fab13696b13b9;hb=ab5ff5126ef56b08f5130a9e110b53c00d0a2761;hpb=aba7afc0616db433dac750c3386dbb23b5d077ca diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index c6d3a5373b..1e3f278d58 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__); + // File hash was never created + writeToFile($FQFN, $secretKey); - // Is the .htaccess file there? - if (!FILE_READABLE(PATH."inc/.secret/.htaccess")) { - // 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"); + // Is the file there? + if (isFileReadable($FQFN)) { + // Also update configuration + setConfigEntry('secret_key', $secretKey); - // Close the file - fclose($fp); - } // END - if - } // END - if + // Force update + updateConfiguration('file_hash', $fileHash, '', '0', TRUE); - // Also update configuration - $_CONFIG['secret_key'] = $secretKey; unset($secretKey); - $_CONFIG['file_hash'] = $file_hash; unset($file_hash); + // Remove variables + unset($secretKey); + unset($fileHash); } // END - if } // END - if -// -?> \ No newline at end of file +// @TODO Rewrite this to a filter +if ((isExtensionInstalledAndNewer('cache', '0.1.2')) && (isValidCacheInstance())) { + // Destroy some cache files + foreach (array('config', 'extension', 'filter', 'modules') as $cache) { + // Use rebuildCache() + rebuildCache($cache); + } // END - foreach +} // END - if + +// [EOF] +?>