If you have tried to install Drupal, or Open Atrium on a hosted web server, it's likely you have run into the script timeout issue I did, and have no way of changing the php.ini yourself to resolve the problem. I cheated - and this is how I did it. The error you typically get in the error log looks something like;
PHP Fatal error: Maximum execution time of 60 seconds exceeded in ......
I did a little digging through the code. The error is reported while running a function in file.inc that scans directories. This gets called by the install script while it's checking that required modules exist. Given that custom Drupal installs typically have A LOT of modules, it's no surprise that it might time out. There is an easy answer - comment out the line in the install script that makes the check;
- Open "install.php" from the root directory of your installation
- Find the line calling "install_check_requirements" and comment it out
- Save changes
- Run install again
Comments
Thanks a lot!!!