Iam using latest drupal 5.1
I installed the memcahed libraries, pecl-memcache extension for php(my phpinfo shows it). memcached service is running.
I added $conf = array(
// The path to wherever memcache.inc is. The easiest is to simply point it
// to the copy in your module's directory.
'cache_inc' => './sites/all/modules/memcache/memcache.inc',
); to the settings.php
I applied the patch file that came with memcache module
I Truncated cache, cache_menu tables as told in the Readme files.
But I see blank pages.
The error
PHP Warning: require_once() [function.require-once]: Unable to access ./includes/bootstrap.inc in /var/www/vhosts/mysite/httpdocs/index.php on line 12
[Mon Jul 16 15:09:17 2007] [error] [client 64.164.209.26] PHP Warning: require_once(./includes/bootstrap.inc) [function.require-once]: failed to open stream: Permission denied in /var/www/vhosts/mysite/httpdocs/index.php on line 12
[Mon Jul 16 15:09:17 2007] [error] [client 64.164.209.26] PHP Fatal error: require_once() [function.require]: Failed opening required './includes/bootstrap.inc' (include_path='.:/usr/share/pear') in /var/www/vhosts/mysite/httpdocs/index.php on line 12
I even tried changing the permissions on bootstrap.inc to 755
Please help