Note that there are some explanatory texts on larger screens.

plurals
  1. PO500 Internal Server Error in Deploying Codeigniter
    text
    copied!<p>I'm trying to deploy my website but I keep getting 500 Internal Server Error. I can open the home page well, but when I want to open another menu tab it keeps showing 500 Internal Server Error. I also have checked the log but didn't seem find any clue. Here's what my server error log showed:</p> <pre><code>&lt;?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?&gt; DEBUG - 2013-03-20 11:36:44 --&gt; Config Class Initialized DEBUG - 2013-03-20 11:36:44 --&gt; Hooks Class Initialized DEBUG - 2013-03-20 11:36:44 --&gt; Utf8 Class Initialized DEBUG - 2013-03-20 11:36:44 --&gt; UTF-8 Support Enabled DEBUG - 2013-03-20 11:36:44 --&gt; URI Class Initialized DEBUG - 2013-03-20 11:36:44 --&gt; Router Class Initialized DEBUG - 2013-03-20 11:36:44 --&gt; No URI present. Default controller set. DEBUG - 2013-03-20 11:36:44 --&gt; Output Class Initialized DEBUG - 2013-03-20 11:36:44 --&gt; Security Class Initialized DEBUG - 2013-03-20 11:36:44 --&gt; Input Class Initialized DEBUG - 2013-03-20 11:36:44 --&gt; Global POST and COOKIE data sanitized DEBUG - 2013-03-20 11:36:44 --&gt; Language Class Initialized DEBUG - 2013-03-20 11:36:44 --&gt; Loader Class Initialized DEBUG - 2013-03-20 11:36:44 --&gt; Config file loaded: application/config/asset.php DEBUG - 2013-03-20 11:36:44 --&gt; Helper loaded: asset_helper DEBUG - 2013-03-20 11:36:44 --&gt; Helper loaded: string_helper DEBUG - 2013-03-20 11:36:44 --&gt; Helper loaded: url_helper DEBUG - 2013-03-20 11:36:44 --&gt; Helper loaded: form_helper DEBUG - 2013-03-20 11:36:44 --&gt; Helper loaded: text_helper DEBUG - 2013-03-20 11:36:44 --&gt; Database Driver Class Initialized DEBUG - 2013-03-20 11:36:44 --&gt; Native_session Class Initialized DEBUG - 2013-03-20 11:36:44 --&gt; Form Validation Class Initialized DEBUG - 2013-03-20 11:36:44 --&gt; Controller Class Initialized DEBUG - 2013-03-20 11:36:44 --&gt; Model Class Initialized DEBUG - 2013-03-20 11:36:44 --&gt; Model Class Initialized DEBUG - 2013-03-20 11:36:44 --&gt; File loaded: application/views/view_home.php DEBUG - 2013-03-20 11:36:44 --&gt; File loaded: application/views/template.php DEBUG - 2013-03-20 11:36:44 --&gt; Final output sent to browser DEBUG - 2013-03-20 11:36:44 --&gt; Total execution time: 0.0295 </code></pre> <p>Heres my .httaccess</p> <blockquote> <p> RewriteEngine On RewriteBase /indocreweb/</p> <pre><code>#Removes access to the system folder by users. #Additionally this will allow you to create a System.php controller, #previously this would not have been possible. #'system' can be replaced if you have renamed your system folder. RewriteCond %{REQUEST_URI} ^system.* RewriteRule ^(.*)$ /indocreweb/index.php?/$1 [L] #When your application folder isn't in the system folder #This snippet prevents user access to the application folder #Submitted by: Fabdrol #Rename 'application' to your applications folder name. RewriteCond %{REQUEST_URI} ^application.* RewriteRule ^(.*)$ /indocreweb/index.php?/$1 [L] #Checks to see if the user is attempting to access a valid file, #such as an image or css document, if this isn't true it sends the #request to index.php RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /indocreweb/index.php?/$1 [L] &lt;/IfModule&gt; </code></pre> <p> #If we don't have mod_rewrite installed, all 404's #can be sent to index.php, and everything works as normal. #Submitted by: ElliotHaughin ErrorDocument 404 /index.php </p> </blockquote> <p>From what log showed, I couldn't find any clue what's the problem or what causing it. Anyone have idea about this? :-(</p> <p>Thank you.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload