Hello Daniel, or anybody who could help!
I have created a live site, with 150 categories and 1500 products, whose database backup file is about 4MBytes in size. When I try to restore the database from a locally saved backup file, using a ADSL line of 256kbps upload speed, via Opencart's Admin>Configuration>Backup/Restore function, I never receive a response. I can see that the upload has started (flicking lights on the DSL router), but after about 2 minutes or so it just stops.
Is there way to increase the timeout period somewhere? Or is it because of an upper limit to the file size for SQL file to be uploaded?
I have created a live site, with 150 categories and 1500 products, whose database backup file is about 4MBytes in size. When I try to restore the database from a locally saved backup file, using a ADSL line of 256kbps upload speed, via Opencart's Admin>Configuration>Backup/Restore function, I never receive a response. I can see that the upload has started (flicking lights on the DSL router), but after about 2 minutes or so it just stops.
Is there way to increase the timeout period somewhere? Or is it because of an upper limit to the file size for SQL file to be uploaded?
Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig
After further investigation I came to the conclusion that it must have been because of the large filesize. PHP was only configured to support up to 2 MBytes (upload_max_filesize "2M"). With PhpMyAdmin, it worked fine.
Still, I changed the admin/controller/upload.php so that it will return an error message when it doesn't detect an uploaded file:
Still, I changed the admin/controller/upload.php so that it will return an error message when it doesn't detect an uploaded file:
Code: Select all
......
if (($request->isPost()) && ($this->validate())) {
if ($upload->has('database')) {
$file = $upload->get('database');
$database->import(file_get_contents($file['tmp_name']));
$session->set('message', $language->get('text_message'));
$response->redirect($url->href('backup'));
}
$this->error['message'] = $language->get('error_not_uploaded');
}
......
Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig
Who is online
Users browsing this forum: No registered users and 6 guests