Page 3 of 3 FirstFirst 123
Results 21 to 30 of 30
  1. #21
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Admin\Configuration\any sub-category --> missing page data

    I've tested v1.3.8 on MySQL 6.0.11 and can't replicate the problems you described with regard to the configuration screen entries not appearing.
    My guess is that you've got corrupt data in one of those 2 tables.
    .

    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. #22
    Join Date
    Jul 2009
    Posts
    71
    Plugin Contributions
    0

    Default Re: Admin\Configuration\any sub-category --> missing page data

    Quote Originally Posted by DrByte View Post
    I've tested v1.3.8 on MySQL 6.0.11 and can't replicate the problems you described with regard to the configuration screen entries not appearing.
    My guess is that you've got corrupt data in one of those 2 tables.
    thanks for following up. i attempted the following on a seperate server (web server2: ms2003sp2, iis6):

    On web server2:
    1. uninstall ii6 -- force httcfg to NOT listen on all ip's and ports
    2. install wampserver 2.0 (apache 2.2, php 5.3, mysql 5.0.45, phpmyadmin 2.11)
    3. install zencart 1.3.8 (same install files as on server1)-- partial success, admin page does not load at all, other pages show detruncate?? (sp?) errors (something to do with 5.3), from further reading on the forum it seems zencart 1.3.8 does not like php 5.3 at all
    4. uninstalled wampserver 2.0
    5. installed wampserver 1.7 (apache 2.2, php 5.2.5, mysql 5.0.45,phpmyadmin 2.11)
    6. installed zencart 1.3.8 -- everything works, all pages including configuration page
    a. the only error i am getting is with SMTP: the following address failed. i put in all the smtp info on the bottom of the email config page (username, pw, smtp addy, etc) but it still fails
    7. i'm using the same zencart install files on server2 as i am on server1
    a. this includes the already moded TYPE=MyISAM with ENGINE=MyISAM in mysql_zencart.sql
    8. I am opting at this time not to downgrade serve1 from mysql 6.0.3 to 5.X since i have those couple live databases.

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

    Default Re: Admin\Configuration\any sub-category --> missing page data

    Quote Originally Posted by jazznuts699 View Post
    2. install wampserver 2.0 (apache 2.2, php 5.3, mysql 5.0.45, phpmyadmin 2.11)
    3. install zencart 1.3.8 (same install files as on server1)-- partial success, admin page does not load at all, other pages show detruncate?? (sp?) errors (something to do with 5.3), from further reading on the forum it seems zencart 1.3.8 does not like php 5.3 at all
    Correct.
    Quote Originally Posted by jazznuts699 View Post
    6. installed zencart 1.3.8 -- everything works, all pages including configuration page
    a. the only error i am getting is with SMTP: the following address failed. i put in all the smtp info on the bottom of the email config page (username, pw, smtp addy, etc) but it still fails
    Did you use v1.3.8? or the newer v1.3.8a?

    If you used the older v1.3.8a, then you'll need to make a fix to the smtp class: http://www.zen-cart.com/forum/showthread.php?t=82570

    If your email problems persist, then I'd be double-checking the address you're sending *to*, as well as all the send-from settings (address, smtp credentials, etc) and check the mailserver app's logs to find out the reason for the rejections.

    Quote Originally Posted by jazznuts699 View Post
    7. i'm using the same zencart install files on server2 as i am on server1
    a. this includes the already moded TYPE=MyISAM with ENGINE=MyISAM in mysql_zencart.sql
    I thought v1.3.8/a already had that. Regardless, ENGINE is the correct term to use, so carry on.
    .

    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. #24
    Join Date
    Jul 2009
    Posts
    71
    Plugin Contributions
    0

    Default Re: Admin\Configuration\any sub-category --> missing page data

    Quote Originally Posted by DrByte View Post
    Correct.
    Did you use v1.3.8? or the newer v1.3.8a?

    I thought v1.3.8/a already had that. Regardless, ENGINE is the correct term to use, so carry on.
    here are my specs on server2 right off the version link in the admin page:

    Zen Cart 1.3.8a
    Database Patch Level: 1.3.8
    PHP Version: 5.2.5 (Zend: 2.2.0)
    Database: MySQL 5.0.45-community-nt
    HTTP Server: Apache/2.2.6 (Win32) PHP/5.2.5

    i pulled the latest download from the site the other day - unless it changed since i first posted this post... i've had to update the sql file with ENGINE -- so not sure about that.

    the email address's are correct as are all the smtp settings. i will look at the link you mentioned above.

  5. #25
    Join Date
    Jul 2009
    Posts
    71
    Plugin Contributions
    0

    Default Re: Admin\Configuration\any sub-category --> missing page data

    Quote Originally Posted by DrByte View Post
    Correct.
    If you used the older v1.3.8a, then you'll need to make a fix to the smtp class: http://www.zen-cart.com/forum/showthread.php?t=82570
    this code is already in the class.smtp.php file as seen below right out of that file

    Code:
     
        //Added for Gmail support CER
        if($this->Protocol != '') $host = $this->Protocol."://".$host;
    i'll switch to PHP and see how that works

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

    Default Re: Admin\Configuration\any sub-category --> missing page data

    Quote Originally Posted by jazznuts699 View Post
    here are my specs on server2 right off the version link in the admin page:

    Zen Cart 1.3.8a
    Database Patch Level: 1.3.8
    PHP Version: 5.2.5 (Zend: 2.2.0)
    Database: MySQL 5.0.45-community-nt
    HTTP Server: Apache/2.2.6 (Win32) PHP/5.2.5

    i pulled the latest download from the site the other day
    Should be fine with that combination of software versions.
    .

    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. #27
    Join Date
    Jul 2009
    Posts
    71
    Plugin Contributions
    0

    Default Re: Admin\Configuration\any sub-category --> missing page data

    so far now luck with mail

    smtp/smtpauth --> recipient failed
    php --> Email Error: Could not instantiate mail function. Please check Admin->Configuration->Email Options->Email Transport.
    sendmail --> no errors but no mail either (tried 2 different email addresses)

    EDIT; here are my settings

    E-Mail Transport Method sendmail
    E-Mail Linefeeds LF
    Use MIME HTML When Sending Emails false
    Send E-Mails true
    Email Archiving Active? false
    E-Mail Friendly-Errors false
    Email Address (Displayed to Contact you) [email protected]
    Email Address (sent FROM) [email protected]
    Emails must send from known domain? No
    Email Admin Format? TEXT
    Send Copy of Order Confirmation Emails To [email protected]
    Send Copy of Create Account Emails To - Status 0
    Send Copy of Create Account Emails To [email protected]
    Send Copy of Tell a Friend Emails To - Status 0
    Send Copy of Tell a Friend Emails To [email protected]
    Send Copy of Customer GV Send Emails To - Status 0
    Send Copy of Customer GV Send Emails To [email protected]
    Send Copy of Admin GV Mail Emails To - Status 0
    Send Copy of Customer Admin GV Mail Emails To [email protected]
    Send Copy of Admin Discount Coupon Mail Emails To - Status 0
    Send Copy of Customer Admin Discount Coupon Mail Emails To [email protected]
    Send Copy of Admin Orders Status Emails To - Status 0
    Send Copy of Admin Orders Status Emails To [email protected]
    Send Notice of Pending Reviews Emails To - Status 0
    Send Notice of Pending Reviews Emails To [email protected]
    Set "Contact Us" Email Dropdown List
    Allow Guest To Tell A Friend false
    Contact Us - Show Store Name and Address 1
    Send Low Stock Emails 0
    Send Low Stock Emails To [email protected]
    Display "Newsletter Unsubscribe" Link? true
    Audience-Select Count Display true
    SMTP Email Account Mailbox [email protected]
    SMTP Email Account Password ************
    SMTP Email Mail Host smtp.mydomain.com
    SMTP Email Mail Server Port 587
    Convert currencies for Text emails £,£:€,€
    Last edited by jazznuts699; 29 Jul 2009 at 04:32 PM.

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

    Default Re: Admin\Configuration\any sub-category --> missing page data

    Set your Email Transport to SMTPAUTH.
    What happens if you try a different port than 587? Maybe 465 or 25 or 26 ?
    http://www.zen-cart.com/wiki/index.p...Email_Problems
    .

    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. #29
    Join Date
    Jul 2009
    Posts
    71
    Plugin Contributions
    0

    Default Re: Admin\Configuration\any sub-category --> missing page data

    i went back to smtpauth -- reentered all the smtp/usr/pw/address info and changed port back to 25. Now it works. I think it was probably a typo somewhere, most likely the pw -- but i could have sworn i retyped it a half dozen times... moving along nicely now

    i found that link earlier and was reading it line by line.. hehe...

    thanks for keeping up with me.

    now i need to find out why my VAT mod is not adding taxes to non business entity customers but thats a different ball of wax

  10. #30
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Admin\Configuration\any sub-category --> missing page data

    edit: Cool. Glad you got it sorted out!


    Ya, that other issue probably deserves a separate discussion ... perhaps in the addon's own support thread?
    .

    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.

 

 
Page 3 of 3 FirstFirst 123

Similar Threads

  1. v139h Sub category images missing
    By TheKenster in forum Setting Up Categories, Products, Attributes
    Replies: 4
    Last Post: 13 Apr 2013, 11:30 PM
  2. can't open any content under admin-configuration
    By annie_eos in forum Basic Configuration
    Replies: 2
    Last Post: 16 May 2010, 07:54 PM
  3. Replies: 1
    Last Post: 25 Nov 2009, 02:04 AM
  4. Missing Admin->Configuration options
    By dthomas in forum Basic Configuration
    Replies: 3
    Last Post: 21 Feb 2009, 11:16 PM
  5. Help!!! Sub-Category missing
    By slabadoo in forum Setting Up Categories, Products, Attributes
    Replies: 14
    Last Post: 7 Jun 2007, 05:03 PM

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