-
Notifications
You must be signed in to change notification settings - Fork 172
FAQ and Common Issues
Datawalke edited this page Aug 13, 2011
·
1 revision
If after uncompressing the Coordino package you proceed to the website and see a white screen ensure the following requirements are in your environment:
- PHP 5.2+
- mod_rewrite is enabled
- The site is configured on a top level domain or a subdomain, not a sub-folder.(IF you would like to please scroll down to the FAQ)
Ensure that your environment has mod_rewrite enabled, the application is on the top level of your domain or sub-domain (not a subfolder) and that the following files are present:
- /.htaccess
- /app/.htaccess
- /app/webroot/.htaccess
Yes! However it does require a modification to the config file and it is not fully supported. You may have to change some links around.
File: /app/config/core.php
/**
* To configure CakePHP *not* to use mod_rewrite and to
* use CakePHP pretty URLs, remove these .htaccess
* files:
*
* /.htaccess
* /app/.htaccess
* /app/webroot/.htaccess
*
* And uncomment the App.baseUrl below:
*/
//Configure::write('App.baseUrl', env('SCRIPT_NAME'));
Modify the App.baseUrl option to be uncommented:
Configure::write('App.baseUrl', env('SCRIPT_NAME'));