Drupal/OpenAtrium Installation Frustration
March 4, 2010 5:53 PM Subscribe
How do you modify the install.php file for Open Atrium (which is basically Drupal) to run on your site? I can't find either string where you're supposed to enter your site account id/password or the URL.
Installing Open Atrium to my server account on Dreamhost. I can go to the install page on my site and have set up a MySQL database for it. However I've hit the point of needing to modify the install.php file to point to the database and my user ID/password for it. According to instructions, there should be two lines of code in the file I need to identify and then modify with my information:
$db_url = "mysql://username:password@localhost/database";
$base_url = "http://www.mywebsite.com";
However for the life of me, I cannot (after multiple read throughs) find either of these lines in the install.php file that I downloaded from Open Atrium's website. As it's supposed to be the same as the install.php file you'd use for Drupal, what am I missing here?!
posted by green_flash to technology (3 answers total)
sites/default/settings.php
which install.php writes to by default if it's readable.
If settings.php doesn't exists,
cp default.settings.php settings.php
And then modify it.
posted by vautrin at 5:59 PM on March 4, 2010