简体   繁体   中英

php session_start: failed: Permission denied (13)

I have a problem with session, i have change repertory with php like this

session_save_path('/w/w/session');
session_start();

The message error:

Warning: session_start() [function.session-start]: open(/w/w/session/sess_bace6057bf24184f0c1c26c002bf9141, O_RDWR) failed: Permission denied (13) in /w/w/config.php on line 3

I have add chmod 777 in filezila but not work

I have tested with .htaccess i have error 500

I dont have access to php.ini in my host.

How can i fix this ?

The path in session_save_path('/w/w/session'); is not the one you need.

Try one of those:

session_save_path('./session');
session_save_path('/session');
session_save_path('/tmp');

On a shared host, you are not as flexible as on a rootserver, and your /www is chrooted, that means, the real path, which you cannot access then is something like /var/www/user3183123/www .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM