elgg-database-installation-problem

elgg-database-installation-problem

hai! elggers,

my database host name is tunnel.pagodabox.com:3306

i manually edited the settings.php file and elgg gives me following error

can any plz help me out,

and how can i setup memcache in elgg

  • Did you go through the install process? Why manually edit settings file? Are you moving from one server to another?

  • because its a pass environment and i am new to that

    just check out www.pagodabox.com

  • what error do you get? I only see the installation process...

    I also think you can't include the port number in the host name (it's the default mysql connection port anyway). Do you enter the hostname like this

    $CONFIG->dbhost = '{{tunnel.pagobox.com}}';

    ---> wrong... Correct:

    $CONFIG->dbhost = 'tunnel.pagobox.com';

    Still, 'localhost' might work as host name, too, if it's the same server. On the other hand it might not work in case your mysql server is really a different server and this server does not allow remote access.