First step to resolve this error to check is mysql is installed on the server and its running properly
if above case is fine than check version of php as php version 7 does not support mysql change to mysqli
First step to resolve this error to check is mysql is installed on the server and its running properly
if above case is fine than check version of php as php version 7 does not support mysql change to mysqli
// Find the below code
$config['index_page'] = "index.php"
// Remove index.php
$config['index_page'] = ""
Path:
Your_website_folder/
application/
assets/
system/
user_guide/
.htaccess <--------- this file
index.php
license.txt
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
// Find the below code
$config['uri_protocol'] = "AUTO"
// Replace it as
$config['uri_protocol'] = "REQUEST_URI"