Custom Query (272 matches)
Results (40 - 42 of 272)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #59 | fixed | Maximum execution time of 60 seconds exceeded with SquirrelMail 1.4.8, XCache-1.2.0, php 5.1.6 | moo | shark |
| Description |
When I try read some of email il log i see this: 2006-12-21 21:35:08: (mod_fastcgi.c.2502) FastCGI-stderr: PHP Fatal error: Maximum execution time of 60 seconds exceeded in /var/www/public_html/webmail/src/read_body.php on line 97 i have this in my php.ini: [xcache] xcache.shm_scheme = "mmap" ; to disable: xcache.size=0 ; to enable : xcache.size=64M etc (any size > 0) and your system mmap allows xcache.size = 64M xcache.count = 1 xcache.slots = 8K xcache.ttl = 0 xcache.gc_interval = 0 xcache.var_size = 0M xcache.var_count = 1 xcache.var_slots = 8K xcache.var_ttl = 0 xcache.var_maxttl = 0 xcache.var_gc_interval = 300 xcache.test = Off xcache.readonly_protection = Off ; for *nix, xcache.mmap_path is a file path, not directory. ; Use something like "/tmp/xcache" if you want to turn on ReadonlyProtection ; 2 group of php won't share the same /tmp/xcache ; for win32, xcache.mmap_path=anonymous map name, not file path xcache.mmap_path = "/dev/zero" xcache.coredump_directory = "" xcache.cacher = On xcache.stat = On xcache.optimizer = Off [xcache.coverager] ; enable coverage data collecting for xcache.coveragedump_directory and xcache_coverager_start/stop/get/clean() functions (will hurt executing performance) xcache.coverager = Off ; requires xcache.coverager=On xcache.coveragedump_directory = "" max_execution_time = 60 ; Maximum execution time of each script, in seconds max_input_time = 60 ; Maximum amount of time each script may spend parsing request data memory_limit = 32M ; Maximum amount of memory a script may consume (8MB) |
|||
| #62 | fixed | percentage bars dont work on konqueror | moo | exobuzz |
| Description |
the percent bar doesn't work on konqueror. to fix the surrounding div needs an absolute size. for example in files admin/xcache.css change line 20 from .percent { border: 1px solid black; width: 80%; height: 100%; } to .percent { border: 1px solid black; width: 10px; height: 50px; } |
|||
| #64 | fixed | Strict Standards on key/current functions | moo | rtshome |
| Description |
I have a problem with XCache. In our test machine we enabled xcache this morning. With all debug levels on (STRICT STANDARDS included), we have some functions that raise a Strict Standards warning that they did not raise without xcache. Here it is a sample code: <?php function returnArray() { return array("key" => "value"); } function passMe($p) { echo $p; } passMe(current(returnArray())); ?> In PHP 5.2 this is valid code (it doesn't raise any php warning). With PHP 5.2 and XCache enabled it raises a warning on the passMe function call: Strict Standards: Only variables should be passed by reference in xcache.php on line 10 Apart modifying the code, is there another solution? Is it a xcache bug? Thank you, Rts |
|||

