Page 32 of 39 FirstFirst ... 223031323334 ... LastLast
Results 311 to 320 of 381
  1. #311
    Join Date
    May 2006
    Location
    Gardiner, Maine
    Posts
    2,360
    Plugin Contributions
    23

    Default Re: Product Extra Fields for text, pdfs and flash

    Yes, that is correct. Have you checked the logs folder for the error logs.

    Thanks lat9 for that helpful bit of advice!
    The full-time Zen Cart Guru. WizTech4ZC.com
    New template for 2.0 viewable here: 2.0 Demo

  2. #312
    Join Date
    Jul 2005
    Location
    Hoedspruit
    Posts
    530
    Plugin Contributions
    2

    Default Re: Product Extra Fields for text, pdfs and flash

    Quote Originally Posted by delia View Post
    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/

  3. #313
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,356
    Plugin Contributions
    94

    Default Re: Product Extra Fields for text, pdfs and flash

    Check also for myDEBUG*.log files, present in your store's /logs directory.

  4. #314
    Join Date
    Jul 2005
    Location
    Hoedspruit
    Posts
    530
    Plugin Contributions
    2

    Default Re: Product Extra Fields for text, pdfs and flash

    Quote Originally Posted by lat9 View Post
    Check also for myDEBUG*.log files, present in your store's /logs directory.
    Where might I find those logs. I don't have access to admin.

  5. #315
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,356
    Plugin Contributions
    94

    Default Re: Product Extra Fields for text, pdfs and flash

    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.

  6. #316
    Join Date
    Jul 2005
    Location
    Hoedspruit
    Posts
    530
    Plugin Contributions
    2

    Default Re: Product Extra Fields for text, pdfs and flash

    Quote Originally Posted by lat9 View Post
    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.
    I have them - anything in particular. The newest is dated 05/10/15

  7. #317
    Join Date
    Jul 2005
    Location
    Hoedspruit
    Posts
    530
    Plugin Contributions
    2

    Default Re: Product Extra Fields for text, pdfs and flash

    my backup's corrupted

  8. #318
    Join Date
    Jul 2005
    Location
    Hoedspruit
    Posts
    530
    Plugin Contributions
    2

    Default Re: Product Extra Fields for text, pdfs and flash

    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

  9. #319
    Join Date
    Jul 2005
    Location
    Hoedspruit
    Posts
    530
    Plugin Contributions
    2

    Default Re: Product Extra Fields for text, pdfs and flash

    I will be doing these files one at a time as I don't need to dig myself into a deeper hole.

  10. #320
    Join Date
    Jul 2005
    Location
    Hoedspruit
    Posts
    530
    Plugin Contributions
    2

    Default Re: Product Extra Fields for text, pdfs and flash

    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 . "'");
    //

 

 
Page 32 of 39 FirstFirst ... 223031323334 ... LastLast

Similar Threads

  1. Replies: 1
    Last Post: 10 Sep 2013, 10:09 PM
  2. Can I add two extra fields for inputting time and date delivery wanted?
    By Desjames in forum Managing Customers and Orders
    Replies: 2
    Last Post: 20 Jun 2010, 08:56 PM
  3. Extra pages and flash movie
    By g.nencini in forum General Questions
    Replies: 1
    Last Post: 11 Oct 2009, 11:51 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR