| Mikan | March 28th, 2011 06:38 AM | install.php missing usergroups table? I's trying to do a fresh install of Classifieds 4.2. (and with VB 3.8)
After step 4 I'm getting that "We're sorry, but the system experienced an unrecoverable error. Please try again later."
If I debug that I'm getting this: Quote:
Script:
Query: SELECT groupid,cpaccess,modaccess,uploadsize,uploads,comments,editpho,editposts,reqmod,highlight,bold,italic,payment,uplimit,free FROM cp_usergroups WHERE groupid=6 OR groupid=11
Result: Table 'classifieds.cp_usergroups' doesn't exist
Database handle: Resource id #20
| Now if I check mysql tables I'm getting this: Quote:
mysql> show tables;
+-----------------------+
| Tables_in_classifieds |
+-----------------------+
| cp_admingroups |
| cp_admlog |
| cp_adtypes |
| cp_bidding |
| cp_bids |
| cp_board |
| cp_buddies |
| cp_cache |
| cp_captcha |
| cp_categories |
| cp_comments |
| cp_currency |
| cp_extrafields |
| cp_favorites |
| cp_feedback |
| cp_invites |
| cp_ipcache |
| cp_iponline |
| cp_languages |
| cp_laston |
| cp_messages |
| cp_notify |
| cp_paid_subscriptions |
| cp_payments |
| cp_phrases |
| cp_productextras |
| cp_products |
| cp_searchids |
| cp_settings |
| cp_sort |
| cp_stats |
| cp_subscriptions |
| cp_users |
| zipData |
+-----------------------+
34 rows in set (0.00 sec)
| See... no cp_usergroups table at all!
Now if I check install.php file there aren't anywhere a piece of code that creates that usergroup table at all so no wonder it doesn't exist: Quote:
# grep usergroups install.php
<a href=\"install.php?step=3\">REFRESH your usergroups or change Admin password</a>
| See, that is the only place in whole install.php script where "usergroups" is mentioned. |