Yes, that is correct. Have you checked the logs folder for the error logs.
Thanks lat9 for that helpful bit of advice!
Yes, that is correct. Have you checked the logs folder for the error logs.
Thanks lat9 for that helpful bit of advice!
There are 2 log folders that I know of - both in CPanel
/public.html/logs which has a lot of stuff that seems unrelated to admin, and:
[Tue Jul 28 08:12:48.127231 2015] [access_compat:error] [pid 857032] [client 66.102.6.226:62151] AH01797: client denied by server configuration: /home/my_user_name/public_html/includes/templates/old_template_name, referer: http://joburgonline.com/
[Tue Jul 28 08:12:48.125849 2015] [access_compat:error] [pid 857921] [client 66.102.6.230:53004] AH01797: client denied by server configuration: /home/my_user_name/public_html/includes/templates/old_template_name, referer: http://joburgonline.com/
[Tue Jul 28 08:12:48.125680 2015] [access_compat:error] [pid 858320] [client 66.102.6.230:41939] AH01797: client denied by server configuration: /home/my_user_name/public_html/includes/templates/old_template_name, referer: http://joburgonline.com/
[Tue Jul 28 08:12:48.125682 2015] [access_compat:error] [pid 855490] [client 66.102.6.226:46355] AH01797: client denied by server configuration: /home/my_user_name/public_html/includes/templates/old_template_name, referer: http://joburgonline.com/
[Tue Jul 28 08:12:48.125609 2015] [access_compat:error] [pid 857036] [client 66.102.6.226:62958] AH01797: client denied by server configuration: /home/my_user_name/public_html/includes/templates/old_template_name, referer: http://joburgonline.com/
[Tue Jul 28 08:12:48.125609 2015] [access_compat:error] [pid 854743] [client 66.102.6.226:38886] AH01797: client denied by server configuration: /home/my_user_name/public_html/includes/templates/old_template_name, referer: http://joburgonline.com/
[Tue Jul 28 08:12:48.125595 2015] [access_compat:error] [pid 858188] [client 66.102.6.226:55230] AH01797: client denied by server configuration: /home/my_user_name/public_html/includes/templates/old_template_name, referer: http://joburgonline.com/
[Tue Jul 28 08:12:48.122814 2015] [access_compat:error] [pid 855431] [client 66.102.6.230:59157] AH01797: client denied by server configuration: /home/my_user_name/public_html/includes/templates/old_template_name, referer: http://joburgonline.com/
Check also for myDEBUG*.log files, present in your store's /logs directory.
Use your cPanel's "File Explorer" or FTP. You'll see the /logs folder as a first-level sub-folder, at the same level as your /includes folder.
my backup's corrupted![]()
Please confirm code I need to remove to restore my admin:
from admin/includes/modules/copy_to_confirm.php
Code:///new fields- code taken from the music type fields and applied with new fields here - adp /03/03/2010 $product_extra = $db->Execute("select extra_field, text_1, text_2, text_3, text_4, file_1, file_2, file_3, file_4, file_1_title, file_2_title, file_3_title, file_4_title, video, video_title, height, width from " . TABLE_PRODUCT_EXTRA_FIELDS . " where products_id = '" . (int)$products_id . "'"); $db->Execute("insert into " . TABLE_PRODUCT_EXTRA_FIELDS . " (products_id, extra_field, text_1, text_2, text_3, text_4, file_1, file_2, file_3, file_4, file_1_title, file_2_title, file_3_title, file_4_title, video, video_title, height, width) values ( '" . (int)$dup_products_id . "', '" . zen_db_input($product_extra->fields['extra_field']) . "', '" . zen_db_input($product_extra->fields['text_1']) . "', '" . zen_db_input($product_extra->fields['text_2']) . "', '" . zen_db_input($product_extra->fields['text_3']) . "', '" . zen_db_input($product_extra->fields['text_4']) . "', '" . zen_db_input($product_extra->fields['file_1']) . "', '" . zen_db_input($product_extra->fields['file_2']) . "', '" . zen_db_input($product_extra->fields['file_3']) . "', '" . zen_db_input($product_extra->fields['file_4']) . "', '" . zen_db_input($product_extra->fields['file_1_title']) . "', '" . zen_db_input($product_extra->fields['file_2_title']) . "', '" . zen_db_input($product_extra->fields['file_3_title']) . "', '" . zen_db_input($product_extra->fields['file_4_title']) . "', '" . zen_db_input($product_extra->fields['video']) . "', '" . zen_db_input($product_extra->fields['video_title']) . "', '" . zen_db_input($product_extra->fields['height']) . "', '" . zen_db_input($product_extra->fields['width']) . "')"); // eo: zen_copy_extra_fields
I will be doing these files one at a time as I don't need to dig myself into a deeper hole.
From admin/includes/modules/delete_product_confirm.php
//delia - product extra fields mod
$db->Execute("delete from " . TABLE_PRODUCT_EXTRA_FIELDS . "
where products_id = '" . (int)$product_id . "'");
//
Bookmarks