バックアップからデータを復元するPHPスクリプトに関数があります。突然、何ヶ月もうまく働いてから仕事が止まるまで、すべてうまく動作しました。私はOC 2.2.0を使用しており、この機能は製品とそのデータをoc_product_backup
テーブルから復元することになっています。私は、問題がどこにあるか私が見るであろうように、すべてのステップをprint_r
、そしてそれが取得するときことに気づい:PHPスクリプトreturn true突然戻り値
return true;
それが起こることはありません。突然何が間違っているのでしょうか、私はこの仕事をどうやって作っていますか?私はこの種の問題を抱えていませんでした。
function restoreBackup()
{
global $mysqli;
$i = 0;
$getpic = "SELECT * FROM oc_product_backup LIMIT 0, 100000";
$backup = $mysqli->query($getpic);
$mysqli->autocommit(FALSE);
$updateproduct_sql = "UPDATE oc_product SET image = ?, modified_by = ?, date_modified = ? WHERE product_id= ?";
$updatedescription_sql = "UPDATE oc_product_description SET meta_description = ?, meta_keyword = ?, tag = ?, modified_by = ? WHERE product_id = ? AND language_id = ?";
$stmt = $mysqli->prepare($updateproduct_sql);
$stmt->bind_param('siss', $image, $modified_by, $date_modified, $product_id);
//print_r ($updateproduct_sql);
$stmt2 = $mysqli->prepare($updatedescription_sql);
$stmt2->bind_param('sssisi', $meta_description, $meta_keyword, $tag, $modified_by, $product_id, $language_id);
//print_r($updatedescription_sql);
while($row = $backup->fetch_array(MYSQLI_ASSOC))
{
//$name = removeslashes($row['name']);
//$name = $row['name'];
//$description = removeslashes($row['description']);
//$description = $row['description'];
$meta_description = $row['meta_description'];
$meta_keyword = $row['meta_keyword'];
$tag = $row['tag'];
$product_id = $row['product_id'];
$modified_by = $row['modified_by'];
$language_id = $row['language_id'];
//if($row['language_id'] == 1)
//{
$image = $row['image'];
//$ean = $row['ean'];
//$name = $row['name'];
//$model = $row['model'];
//$status = $row['status'];
$price_sync = $row['price_sync'];
$date_modified = $row['date_modified'];
if(!$stmt->execute())
return false;
//}
if(!$stmt2->execute())
return false;
$i++;
if(($i % 500) === 0) $mysqli->commit();
}
$mysqli->commit();
$backup->close(); //the last line that gets executed
return true; //this never happens
writeToLog('- Backup restored');
}
データベースのデータが増えたためにスクリプトがタイムアウトしている可能性がありますか? –
@SchalkKeun Thanx(返信用) - 私のDBは当時はそれほど大きくはなかったので、これは問題ではないと思います。とにかく、提案のためのおかげで。 – Nancy
空白のページや[ネットワークのタイムアウト]ページが表示されていますか?このスクリプトは、ブラウザ上で実行されているのか、またはcronジョブとして実行されていますか? –