Hi,

I'm getting the following error after installing the module and logging out:

Notice: Undefined index: drupal_uid in /home/USERNAME/public_html/sites/SITENAME.COM/modules/fastpath_fscache/cache.fs.inc on line 270

Notice: Trying to get property of non-object in /home/USERNAME/public_html/sites/SITENAME.COM/modules/fastpath_fscache/cache.fs.inc on line 42

If it makes a difference, I am running a multi site setup.

I have changed the code for the settings.php to:
$conf = array(
'page_cache_fastpath' => 1,
'cache_inc' => './sites/SITENAME.COM/modules/fastpath_fscache/cache.fs.inc',
'file_cache' => './sites/SITENAME.COM/files/',
);

I tried it the default way, and that gave me the same error.

Any ideas?

Comments

kenorb’s picture

Status: Active » Needs review

Change line 270:

  if (empty($_POST) && !$_COOKIE['drupal_uid']) {

to that one:

  if (empty($_POST) && empty($_COOKIE['drupal_uid'])) {
kenorb’s picture

Status: Needs review » Patch (to be ported)
kenorb’s picture

Status: Patch (to be ported) » Closed (won't fix)

No response.
5.x is no longer supported.