Warning: Uncaught Exception: Session: Configured save path 'C:\Windows\temp' is not w |
Hello i am using Version 3.1.8. i have created application on xampp server and deploy it on iis server now i am gating "Warning: Uncaught Exception: Session: Configured save path 'C:\Windows\temp' is not writable by the PHP process" this error. on the page where i did not use session.
Thanks.
(03-29-2018, 05:37 AM)XtreemDeveloper Wrote: Change your Session store path and give the folder permission of 0777 Wrong answer and seo spam... Windows != unix @ktmonty, do you use codeigniter session? if yes, set the session save path to application/tmp/session
This is how I do it on Windows 10 Pro x64
1) Create a new directory under ./application called writable 2) This is how I setup my sessions for files. PHP Code: $config['sess_driver'] = 'files'; This works like a charm on Windows. What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )
Many years later but for me, I had to change the following line in config.php from
PHP Code: $config['sess_save_path'] = NULL; To: PHP Code: $config['sess_save_path'] = APPPATH.'application/logs'; |
Welcome Guest, Not a member yet? Register Sign In |