Page 2 of 2 FirstFirst 12
Results 11 to 20 of 20
  1. #11
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: does anybody know why the first page is not loading?

    I can't promise it'll be perfect without having a complete set of files (which I'd rather avoid since last time I worked with that template years ago it was a nightmare).
    But if you wanna attach your template's tpl_header.php and tpl_main_page.php files I'll take a look.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  2. #12
    Join Date
    Feb 2010
    Posts
    74
    Plugin Contributions
    0

    Default Re: does anybody know why the first page is not loading?

    Quote Originally Posted by DrByte View Post
    I can't promise it'll be perfect without having a complete set of files (which I'd rather avoid since last time I worked with that template years ago it was a nightmare).
    But if you wanna attach your template's tpl_header.php and tpl_main_page.php files I'll take a look.
    I cant attach php...

  3. #13
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: does anybody know why the first page is not loading?

    You could zip up the files in the template's "common" directory and attach the zip.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  4. #14
    Join Date
    Feb 2010
    Posts
    74
    Plugin Contributions
    0

    Default Re: does anybody know why the first page is not loading?

    Quote Originally Posted by DrByte View Post
    You could zip up the files in the template's "common" directory and attach the zip.
    thank you drbyte.
    Attached Files Attached Files

  5. #15
    Join Date
    Feb 2010
    Posts
    74
    Plugin Contributions
    0

    Default Re: does anybody know why the first page is not loading?

    Quote Originally Posted by DrByte View Post
    You could zip up the files in the template's "common" directory and attach the zip.
    here's the latest log...
    Attached Files Attached Files

  6. #16
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: does anybody know why the first page is not loading?

    Quote Originally Posted by lrfowler24 View Post
    here's the latest log...
    --> PHP Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; products_with_attributes_stock has a deprecated constructor in /includes/classes/observers/class.products_with_attributes_stock.php on line 15.
    Looks like you also need to update your attribute stock plugin if you're going to keep using this newer PHP version.

    PHP Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; ih_image has a deprecated constructor in /includes/classes/bmz_image_handler.class.php
    PHP Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; gifinfo has a deprecated constructor in /includes/classes/bmz_gif_info.class.php
    And your image-handler plugin.

    Really, since you upgraded your PHP version you NEED TO UPGRADE EVERYTHING ELSE TOO: Zen Cart itself, and each plugin you've added, and every customization you've made.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  7. #17
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: does anybody know why the first page is not loading?

    Quote Originally Posted by lrfowler24 View Post
    here's the latest log...
    PHP Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /includes/templates/##########_temp/common/html_header.php on line 98.
    The html_header.php file probably needs every occurrence of the following


    while(list ($key, $value) = each($directory_array)) {

    replaced with:


    foreach($directory_array as $key => $value) {


    There are dozens of other updates that are going to be needed in order to be compatible with your new PHP version. This is just one of many.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  8. #18
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: does anybody know why the first page is not loading?

    tpl_header line 133, maybe try changing

    preg_replace('.php','', $PHP_SELF)

    to

    preg_replace('/.php$/','', $PHP_SELF)
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  9. #19
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,668
    Plugin Contributions
    11

    Default Re: does anybody know why the first page is not loading?

    oops... everything is said above...

    best.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  10. #20
    Join Date
    Feb 2010
    Posts
    74
    Plugin Contributions
    0

    Default Re: does anybody know why the first page is not loading?

    Quote Originally Posted by DrByte View Post
    Looks like you also need to update your attribute stock plugin if you're going to keep using this newer PHP version.




    And your image-handler plugin.

    Really, since you upgraded your PHP version you NEED TO UPGRADE EVERYTHING ELSE TOO: Zen Cart itself, and each plugin you've added, and every customization you've made.
    well... I did update zencart.....
    did you want access to the website files and I can pay you to fix it?

 

 
Page 2 of 2 FirstFirst 12

Similar Threads

  1. Does anybody know how to center main page text?
    By mubasher in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 26 Jan 2011, 01:16 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