45行目のここが悪さしているみたい。 というよりリダイレクトだねぇ。 // インストールされてなければインストーラにリダイレクト if ($app['config']['eccube_install']) { $app->initialize(); $app->initializePlugin(); if ($app['config']['http_cache']['enabled']) { $app['http_cache']->run(); } else { $app->run(); } } else { $location = str_replace('index.php', 'install.php', $_SERVER['SCRIPT_NAME']); header('Location:'.$location); exit; }
45行目のここが悪さしているみたい。 というよりリダイレクトだねぇ。 // インストールされてなければインストーラにリダイレクト if ($app['config']['eccube_install...
=======================================
http://ift.tt/1abnmbU
November 15, 2016 at 01:46PM
=======================================
45行目のここが悪さしているみたい。
というよりリダイレクトだねぇ。
// インストールされてなければインストーラにリダイレクト
if ($app['config']['eccube_install']) {
$app->initialize();
$app->initializePlugin();
if ($app['config']['http_cache']['enabled']) {
$app['http_cache']->run();
} else {
$app->run();
}
} else {
$location = str_replace('index.php', 'install.php', $_SERVER['SCRIPT_NAME']);
header('Location:'.$location);
exit;
}
というよりリダイレクトだねぇ。
// インストールされてなければインストーラにリダイレクト
if ($app['config']['eccube_install']) {
$app->initialize();
$app->initializePlugin();
if ($app['config']['http_cache']['enabled']) {
$app['http_cache']->run();
} else {
$app->run();
}
} else {
$location = str_replace('index.php', 'install.php', $_SERVER['SCRIPT_NAME']);
header('Location:'.$location);
exit;
}
http://ift.tt/1abnmbU
November 15, 2016 at 01:46PM
コメント
コメントを投稿