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__); // Generate FQFN for .htaccess file $FQFN = sprintf("%sinc/.secret/.htaccess", constant('PATH') ); // Is the .htaccess file there? if (!isFileReadable($FQFN)) { // Also create .htaccess file writeToFile($FQFN, "Deny from all\n"); } // END - if // Also update configuration setConfigEntry('secret_key', $secretKey); setConfigEntry('file_hash' , $fileHash); // Remove variables unset($secretKey); unset($fileHash); } // END - if } // END - if // ?>