Closed (fixed)
Project:
Cache Router
Version:
6.x-1.0-beta8
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
8 Feb 2009 at 14:34 UTC
Updated:
17 Sep 2009 at 08:30 UTC
Jump to comment: Most recent
Comments
Comment #1
Stefanos Karagos commentedI'm receiving the same Warning...
Any ideas plsss?
Comment #2
bacchus101 commentedGetting the same thing.
Edit: I am going to chalk this up to my inability to read directions. I did not update the engine in the settings.php to memcache. I have not seen the error since updating the file to the correct format for the engine in use.
Comment #3
goldschmidt.a commentedSame warnings here too.
When I switch my settings.php info to anything but the default
'engine' => 'db', I get other errors. Do I need to install anything else beyond this module to make these warnings go away? memcache, apc, etc.?Thanks,
Andrew G
Comment #4
ramones79 commentedsame as #3
any ideas? (because warning messages over a production site isn't exactly pleasant) :))
btw I guess some or maybe all of these error messages are due to the limitations of the shared hosting?
Comment #5
gbuske commentedin line 83 the function signature of flush hasn't any default value for flush, but if it is empty flush is set to time(), so i think it is desired that flush is able to be empty -> a default value to the param should fix the problem:
Old:
function flush($flush) {
New:
function flush($flush = null) {
Comment #6
ball.in.th commentedgetting the same error on a fresh install of cacherouter too.
Comment #7
Anonymous (not verified) commented@#5: that's it. I got the error on a clean install too.
Comment #8
miklThat should be fixable by changing line 83 of engines/db.php to this:
Comment #9
slantview commentedThis is fixed in latest cvs commit.
Comment #10
slantview commented