Mod rewrite is beyond this list, there are too many variations on installations for me to explain. http://www.google.com.au/search?q=apache+enable+mod-rewrite&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-GB:official&client=firefox-a
As for PATH_SEPERATOR looking on http://au3.php.net/dir shows that there is an issue with your php installation. It should be a predifined constant. A temporary fix is to add a definition for it in /.automount/ parijatham/export/adi/public_html/cake/index.phpjust before it is first used. eg. Normal: define('APP_DIR', 'app'); define('DS', DIRECTORY_SEPARATOR); define('ROOT', dirname(__FILE__)); Temp Fix: define('APP_DIR', 'app'); define('DIRECTORY_SEPARATOR', '\'); define('DS', DIRECTORY_SEPARATOR); define('ROOT', dirname(__FILE__)); On Jun 14, 3:04 pm, "Adi Mallikarjuna Reddy V" <[EMAIL PROTECTED]> wrote: > I am newbie to this. Where I define PATH_SEPARATOR? and How do I enable > mod_rewrite? > > Thanks in advance > Regards > Adi > > On 6/14/07, Geoff Ford <[EMAIL PROTECTED]> wrote: > > > > > > > PATH_SEPARATOR is not defined. Check the index.php file and make sure > > it is correctly defined. Also ensure you have mod_rewrite enabled > > > On Jun 14, 2:49 pm, "Adi Mallikarjuna Reddy V" > > <[EMAIL PROTECTED]> wrote: > > > Same error persists. I followed instructions on the docs page. I changed > > > .htaccess to add rule with my username. > > > > Can anyone help me out here. > > > > On 6/14/07, Grant Cox <[EMAIL PROTECTED]> wrote: > > > > > Download CakePHP > > fromhttp://cakeforge.org/frs/?group_id=23&release_id=235 > > > > -- > > > -------------------------------------- > > > Adi Mallikarjuna Reddy Vwww.adilive.in > > > -------------------------------------- > > -- > -------------------------------------- > Adi Mallikarjuna Reddy Vwww.adilive.in > -------------------------------------- --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---
