Re: Anyone whos still following the forum..
Ajeh <[email protected]>
| Newsgroups | gmane.comp.web.oscommerce.installation |
|---|---|
| Message-ID | <bf51f6b22b373a7fd6b139b25a52b9b0@osCommerce-Forums> |
This message was sent from: Installation and Configuration
http://forums.oscommerce.com/viewtopic.php?p=227720#227720
----------------------------------------------------------------
[quote="proane"]Hey guys,
I have tried a fresh install with both the regular release of osCommerce, and even the MAX release (from AAhost) in hopes that I would have had some fluke luck.
My results? Nothing, same old error. Still giving me the error that it cant find table catalog.config. I gotta take a break from this computer stuff but when I get back I think that I am going to try that "phpadmin" solution that fl70 had suggested to me. I have to take a break for now, but I'll tell you guys what the results are.
Thanks for all the help and support here.
--Patrick[/quote]
At the bottom of both the /includes/configure.php are the following:
[code]// define our database connection
define('DB_SERVER', ''); // eg, localhost - should not be empty for productive servers
define('DB_SERVER_USERNAME', '');
define('DB_SERVER_PASSWORD', '');
define('DB_DATABASE', 'osCommerce');
define('USE_PCONNECT', 'false'); // use persistent connections?
define('STORE_SESSIONS', ''); // leave empty '' for default handler or set to 'mysql'
[/code]
Did you fill this out with your information on your MySQL file?
Example:
[code]// define our database connection
define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers
define('DB_SERVER_USERNAME', 'fred');
define('DB_SERVER_PASSWORD', 'letmein');
define('DB_DATABASE', 'my_database_name');
define('USE_PCONNECT', 'false'); // use persistent connections?
define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'
[/code]