Jump to content

Recommended Posts

Hi Thames,

 

latest message you give is a "Don't forget" message. You need to fill in those fields in the configure screen of the "Check" module.

 

When you filled in those values, click the close icon on the right of the orange notice box to get rid of it...

Link to comment
Share on other sites

About the memcache error. Is there anything more said when the error occurs? (Line number, variable that is not accepted?

 

sounds like this (or similar)

http://forge.prestashop.com/browse/PSCFV-1347

 

 

Code snippet from /classes/cache/CacheMemcache.php:

...

 

foreach ($all_slabs as $server => $slabs)

{

if (is_array($slabs))

{

foreach (array_keys($slabs) as $slab_id) // <--Maybe this one is sometimes undefined??

{

if ($slab_id) // maybe add this??

{

$dump = $this->memcache->getExtendedStats('cachedump', (int)$slab_id);

if ($dump)

{

foreach ($dump as $entries)

{

if ($entries)

$this->keys = array_merge($this->keys, array_keys($entries));

}

}

} // closing bracket....

}

}

}

...

 

 

Just an hopeful idea. Didn't see any check on that one.

 

(But it can be that IF $slabs exists, $slab_id MUST exist for sure, so test is not explicitly needed?? Don't know the code behind it, so this Question is for the original author to answer...)

 

My 2 cents,

pascal

Link to comment
Share on other sites

×
×
  • Create New...