|
View:
New views
2 Messages
—
Rating Filter:
Alert me
|
|
|
Installing on godaddyI'm trying to install webcollab on a godaddy account. I gather the setup.php script won't work with their system, so I set up a sql database manually and made the following changes to the config.php file:
//DATABASE OPTIONS define('cdcarter', "" ); define('cdcarter', "" ); define('mypassword', "" ); //Database type (valid options are "mysql", "postgresql", "mysql_innodb" and "mysqli") define('DATABASE_TYPE', "mysql" ); //Database host (usually "localhost") define('DATABASE_HOST', "p41mysql103.secureserver.net" ); When I try to log in, I get the following message: Sorry but there seems to be a problem in connecting to the database server Has anybody else managed to make it work with Godaddy? |
|
|
Re: Installing on godaddyOn Wed, 12 Nov 2008 06:50:56 -0800 (PST)
cdcarter <cdc@...> wrote: > > I'm trying to install webcollab on a godaddy account. I gather the setup.php > script won't work with their system, so I set up a sql database manually and > made the following changes to the config.php file: > > //DATABASE OPTIONS > > define('cdcarter', "" ); > define('cdcarter', "" ); > define('mypassword', "" ); > Change the above to something like this: //DATABASE OPTIONS define('DATABASE_NAME', 'cdcarter' ); define('DATABASE_USER', 'cdcarter' ); define('DATABASE_PASSWORD','mypassword' ); That should help matters considerably :-) > //Database type (valid options are "mysql", "postgresql", "mysql_innodb" > and "mysqli") > define('DATABASE_TYPE', "mysql" ); > > //Database host (usually "localhost") > define('DATABASE_HOST', "p41mysql103.secureserver.net" ); > These two look fine. > When I try to log in, I get the following message: > > Sorry but there seems to be a problem in connecting to the database server > Yes, and that's just the standard error message with the above problem. Hope that helps. Andrew Simpson ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Webcollab-users mailing list Webcollab-users@... https://lists.sourceforge.net/lists/listinfo/webcollab-users |
| Free embeddable forum powered by Nabble | Forum Help |