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

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

    Hmmm. The only way I can recreate the symptoms you described is to wipe out the contents of my configuration_groups table.

    The configuration_group_id records from the configuration_groups table are in a one-to-many relationship with the configuration_group_id records in the configuration table. If those records get out of sync (which would be extremely odd in normal operation) then the same symptoms would occur.

    You said this is a test site which is a copy of the live site, right? I'm frankly very disinterested in fixing problems on test sites because test servers are very seldom configured the same as properly functioning live servers, especially if they're on a small home/office PC. However, if your live site is working fine, and your test site is not, and maybe your database records didn't import properly, then perhaps doing a fresh backup of your live site and re-importing it to your test server (after first deleting all the tables on the test server) ... may be a help.
    .

    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
    Jul 2009
    Posts
    71
    Plugin Contributions
    0

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

    Quote Originally Posted by DrByte View Post
    Hmmm. The only way I can recreate the symptoms you described is to wipe out the contents of my configuration_groups table.

    The configuration_group_id records from the configuration_groups table are in a one-to-many relationship with the configuration_group_id records in the configuration table. If those records get out of sync (which would be extremely odd in normal operation) then the same symptoms would occur.

    You said this is a test site which is a copy of the live site, right? I'm frankly very disinterested in fixing problems on test sites because test servers are very seldom configured the same as properly functioning live servers, especially if they're on a small home/office PC. However, if your live site is working fine, and your test site is not, and maybe your database records didn't import properly, then perhaps doing a fresh backup of your live site and re-importing it to your test server (after first deleting all the tables on the test server) ... may be a help.
    this is a test site in prep to go live. once i have everything configured properly i will copy everything to live. as we stand now zencart is only installed on the test box thus i have no live db to go back to.

    if i delete the configuration tables (configuration and configuration_group) would i be able to just recreate those two tables using sql scripts from the install folder zc_install (which has been removed as per install instructions)

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

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

    When did this problem first show up?
    .

    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
    Jul 2009
    Posts
    71
    Plugin Contributions
    0

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

    Quote Originally Posted by DrByte View Post
    When did this problem first show up?
    i had this problem from the get go -- but not being familiar with zencart when i first installed it i thought it was normal.

    i just whacked the entire db and reinstalled under a new db. install runs great except that due to my version of mysql i have to replace every instance of TYPE=MyISAM with ENGINE=MyISAM in mysql_zencart.sql else the sql install fails.

    I also did this in the below files just in case:

    mysql_upgrade_zencart_127_to_130.sql
    mysql_upgrade_zencart_124_to_125.sql
    mysql_upgrade_zencart_121_to_122.sql
    mysql_upgrade_zencart_114_to_120.sql
    mysql_upgrade_zencart_104_to_111.sql

    none of the other upgrade sql files had any references to TYPE=MyISAM

    long story short -- the problem i reported is recreated with a fresh install making me believe this is a bug.

  5. #15
    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
    ... making me believe this is a bug.
    Fair enough.
    Yours is the first I've seen of someone reporting the problem you mention, so *if* there is a bug, then it's unique to the combination of software on your test computer.

    Zen Cart v1.3.8 was never tested for compatibility with MySQL 6, and as such may encounter some problems with it. So that may be the wildcard for you.

    And, since MySQL 6.0.3 is presently experimental alpha code as far as MySQL is concerned, perhaps using an officially released version might give you better mileage.

    Try using MySQL 5.something.


    And, you don't need to edit those mysql_upgrade_*.sql files if you're not actually doing upgrades.
    .

    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.

  6. #16
    Join Date
    Jul 2009
    Posts
    71
    Plugin Contributions
    0

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

    crap.... i was hoping this would be something else. i'm not trying to be 'fresh' about a bug or not a bug. We actually have one live website on this box which runs on mysql thus if i downgrade to 5.1 i may break something -- you know any sites that discuss how to downgrade (mysql documentation mentioned downgrading from 5.1 to 5.0 not 6.0.3 to 5.1). Our live box where zencart will go ultimately run is on mysql 5.0.37 but as mentioned before this box is on mysql v6.0.3.

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

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

    Is there any reason why you can't set things up on your 5.0 server to use as your staging area? Then when it's ready to go, move it to the desired working live folder?
    .

    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,373
    Blog Entries
    7
    Plugin Contributions
    274

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

    I don't have a MySQL 6 environment available to do any testing at this point, so can't offer much assistance in that area, at least not right now.
    .

    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
    Jul 2009
    Posts
    71
    Plugin Contributions
    0

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

    Quote Originally Posted by DrByte View Post
    Is there any reason why you can't set things up on your 5.0 server to use as your staging area? Then when it's ready to go, move it to the desired working live folder?
    it's not as much a problem as a hastle due to bandwidth -- this is because the box i wanted to stage everything at is in the US, while my live box is in EUROPE. And i am currently in the US. Thus having the ability to setup a box here then just copy over tables/files would be the best scenario :). When i RDP into the box in Europe everything is in slow motion .

    i think my best bet would be to downgrade to mysql 5.2 and go from there. i'll perform a full backup of the box and see where that takes me. thanks for your help.

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

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

    Ya, the slo-mo challenge can be a bit of a pain.
    .

    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 2 of 3 FirstFirst 123 LastLast

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