Ok, I finally resolved my issue. I have tried removed the three
.htaccess file before then my web stop working because it can not find
my xml file which is important and is in app/webroot/files directory. I
have this function to start up the xml file.
$this->doc = $impl->load_file('files/internationalization.xml');
In localhost, it works but not in web hosting. So I decided not to
remove the three .htaccess file then after I read your advice, I try to
change the function to become like this:
$this->doc =
$impl->load_file('app/webroot/files/internationalization.xml');
Then it works and
$this->controller->redirect($this->controller->referer()); works just
it should be.
Thank you.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---