“stat(): stat failed for /home/.tmp/memcached.sock”
-
wp-content/object-cache.php line 470
$stat = @stat( $per_user_unix_socket ); if ( $stat !== false && ( $stat["mode"] & 0140000 ) == 0140000 ) { // We have UNIX socket, use it $instances[] = array( $per_user_unix_socket, 0, 1 ); break; }
should include check for file existence
$per_user_unix_socket = "/home/.tmp/memcached.sock"; if (file_exists($per_user_unix_socket)) {
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘“stat(): stat failed for /home/.tmp/memcached.sock”’ is closed to new replies.