Crypto Miner
Crypto Miner

Reputation: 5

CodeIgniter 3.1.11 localhost is not working (HTTP ERROR 500)

i'am using first time codeigniter .But i know php .

const CI_VERSION = '3.1.11';

My problem is ; website is working on hosting , im create backup and download my localhost folder.but doesn't work in localhost, i want to work localhost (wamp server). i was get a error HTTP ERROR 500.

localhost url : http://localhost/test/

I was edit : application/config.php

$config['base_url'] = 'http://localhost/test/';

I was update : application/database.php

what should I do ? What is next step ?

Upvotes: 0

Views: 910

Answers (1)

user27976
user27976

Reputation: 149

  1. Try to install Xampp Software, since wamp server has a issues for proper installation in some systems. This might be the problem.

  2. Check .htaccess is available in your root directory. As well as check the permission for the file for index.php in your root directory.

  3. Before above 2 steps, make sure to check config.php and database.php has done proper changes.

  4. Check the error logs(php_error_log) so that you will find the exact problem.

Upvotes: 0

Related Questions