By prakash1106
My application cannot read (already created ) session file. so when I try to make two file 1.php:
session_start();
$_SESSION['test']="Digital_Ocean";
2.php:
session_start();
echo $_SESSION['test']
when I browser 1.php, it will crease a session file(in session.save_path) sess_… with out error. When browse 2.php again create another sess_… file with error: ** Notice: Undefined index:test** I have given access to the session folder
chmod -R 0777 /var/lib/php5/session
(same problem when I use /tmp also)
That’s the reason I cannot login in any php application. can anyone explain me what’s going on?
I have nginx, varnish and php-fpm Thank you
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Problem Solved !!! I commented unset req.http.cookie and it’s working
sub vcl_recv {
# Happens before we check if we have this in cache already.
#
# Typically you clean up the request here, removing cookies you don't need,
# rewriting the request, etc.
# if (!(req.url ~ "wp-(login|admin)")) {
# unset req.http.cookie;
# }
}
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.