PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Saturday, November 12, 2022

[FIXED] Why am I getting session_start(): Cannot find save handler 'memcached' - session startup failed on google app engine?

 November 12, 2022     google-app-engine, memcached, php     No comments   

Issue

I configured php.ini using this following code:

session.save_handler = memcached
session.save_path = "127.0.0.1:11211"

Can anyone please tell why am I still getting this error?


Solution

I think the issue is your save_path variable.

Try this :

session.save_handler = memcached
session.save_path = "127.0.0.1:11211"

Also check this :

$memcache = new Memcache;
$memcache->connect('localhost', 11211) or die ("Could not connect");

are you able to connect or not?

Hope it helps!!

ref: https://www.dotdeb.org/2008/08/25/storing-your-php-sessions-using-memcached/



Answered By - prakash tank
Answer Checked By - Mildred Charles (PHPFixing Admin)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing