I've got two scripts:
hack_install.php
error_reporting(E_ALL & ~E_NOTICE);
$path_to_install = str_replace("hack_install.php", "", $_SERVER['PATH_TRANSLATED']);
$install_dir = opendir($path_to_install);
while (($file = readdir($install_dir)) !== false) {
if (strpos($file, "hack_install_b") !== false) {
$versions[] = $file;
}
}
unset($install_dir);
unset ($file);
asort($versions);
foreach ($versions as $version) {
$theversion = $version;
}
unset($version);
unset($versions);
require_once($theversion);
and hack_install_b1.php
define('THIS_SCRIPT', 'hack_install');
define('INSTALLER_BUILD_NUMBER', '1');
define('INSTALLER_VERSION', '1.0');
require_once('../includes/config.php');
chdir("../$admincpdir");
require_once('./global.php');
require_once('./includes/adminfunctions_template.php');
require_once('./includes/adminfunctions_language.php');
require_once('./includes/hackfunctions_b1.php');
chdir('./install');
I get the above error with both...
|