Reputation: 54949
i am getting the following error
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
We use DreamHost and the link to the URL is http://strivemedicare.in/
Upvotes: 8
Views: 43307
Reputation: 1159
Just enable 'mbstring' and 'intl' modules in your host panel.
Upvotes: 2
Reputation: 8759
On CentOS server I usually fix this issue by using chmod -R 755 public_html
from current cPanel user directroy.
For example:
chmod -R 755 /home/{cp_username}/public_html/
There is also alternative method doing this via cPanel GUI:
Upvotes: 0
Reputation: 21
You must enable the intl extension to use CakePHP.
You are getting error in /var/www/html/config/bootstrap.php on line 38
Upvotes: 1
Reputation: 71
check that when you assign Auth in your $components
in AppController
, define
public function beforeFilter(){
//$this->Auth->loginAction = array('controller' => 'users', 'action' => 'login');
$this->Auth->allow('index');
}
Upvotes: 0
Reputation: 2708
There can be following reasons for 500 Internal Server Error
in CakePHP application:
777
then webserver gives 500
error for safety.tmp
folder. It is best practice that you must delete cache if you move your application from one place to another.Configure::write('debug',2);
/var/log/apache2/error.log
Hope It Helps, Thanks!!
Upvotes: 26