dongzhukuai8177 2018-12-06 18:18
浏览 114
已采纳

将我的Codeigniter站点从实时服务器移动到localhost时出现问题

I am moving my CodeIgniter site from live server to localhost. I have downloaded the files via ftp and database file from Phpmyadmin then i set everything and configured database. But the problem is only my homepage is accessible no login or form submission is happening whatever i do i am redirected to home but that is not the case on live server. I cant understand whats the issue why its working perfectly fine on live server but not on localhost.

I think the problem is that sessions are not working because i cant login. Below are my config file session settings.

$config['sess_driver'] = 'database';
$config['sess_cookie_name'] = 'ci_session';
$config['sess_expiration'] = 86400; //7200
$config['sess_save_path'] = 'ci_sessions';
$config['sess_match_ip'] = FALSE;
$config['sess_match_useragent'] = FALSE;
$config['sess_time_to_update'] = 300; //300
$config['sess_regenerate_destroy'] = FALSE;
$config['sess_encrypt_cookie'] = FALSE;

$config['cookie_prefix']    = 'app';
$config['cookie_domain']    = 'localhost';
$config['cookie_path']      = '/app/';
$config['cookie_secure']    = FALSE;
$config['cookie_httponly']  = FALSE;
  • 写回答

1条回答 默认 最新

  • doufeikuang7724 2018-12-13 06:29
    关注

    i got this solution from Codeigniter session data lost after redirect by @user2818832 it worked for me.!

    if you are working in CI 3.x and just upgraded your server php version to php 7.x

    Go to system/libraries/Session/session.php at Line no 281 and replace ini_set('session.name', $params['cookie_name']); by ini_set('session.id', $params['cookie_name']);

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?