Katies30f:
I am using the newest version of Zen Cart 1.3.8
1146 Table 'scr0908708265688.zen_admin_menu_headers' doesn't exist
in:
[select id from zen_admin_menu_headers where header = 'Configuration']
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
I've had this problem too and I was able to get it to work. Disclaimer: I'm really dumb and I don't know what the hell I'm doing with php or Zen Cart.
But this worked:
Using the Install php query tool under admin, I merely copied and pasted this into the box and pressed "send:"
CREATE TABLE zen_admin_allowed_pages (
categories_id int(11) NOT NULL default '0',
admin_id int(11) NOT NULL default '0'
) TYPE=MyISAM;
Whatever table it said wasn't there, I made it there by editing the line from the error line. I copied this line straight from the output screen (or the install_admin_profiles file that came with the mod) and just changed the name to whatever it needed. In this case, I had to add "zen_" to the front of "admin_allowed_pages." Someone in this post made a reference to appending "zen_" to it but didn't explain.
When you run the full install_admin_profiles file it will list the errors at the very very top of the page. This was also an indicator that this remedy might work. I don't know if it's the proper fix, but so far things are operating correctly.
I hope this is a solution for you.
You can also find examples of the other table setups in that same file, so zen_admin_menu_headers has lots of entries for it. It wouldn't be just one line of code, I'm guessing. But there's probably a better solution. I'm just glad this worked.