Hi!

I'm pretty new here too but have also had some problems getting Cake
working without mod_rewrite being available.  So might be able to help.

If you have uncommented define ('BASE_URL', env('SCRIPT_NAME'));  from
core.php you must all make sure the 3 .htaccess files are removed from
from the cake install folders

/cake_1.1.5.3148
/app
/app/webroot

On my install I found that once this was done there was a problem with
the  links being generated incorrectly from the base url which I
managed to fix by changing

//define ('BASE_URL', env('SCRIPT_NAME'));
to define ('BASE_URL', 'http://'.env('HTTP_HOST').'/index.php'); in
core.php

presumably you could also try
define ('BASE_URL', 'http://'.env('HTTP_HOST').'/index.php?')

I think this problem may also relate to
https://trac.cakephp.org/ticket/812

cheers


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~----------~----~----~----~------~----~------~--~---

Reply via email to