Skip to content

FAQ and Common Issues

Datawalke edited this page Aug 13, 2011 · 1 revision

Common Issues

Help, I'm getting a white screen!

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)

It looks like all the CSS and Images are Broken

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

Frequently Asked Questions

Can I install Coordino in a sub-folder? (e.g. example.com/coordino-install vs example.com)

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'));