Custom Query (260 matches)

Filters
 
Columns

Show under each result:


Results (46 - 48 of 260)

Ticket Resolution Summary Owner Reporter
#62 fixed percentage bars dont work on konqueror moo exobuzz

Reported by exobuzz, 6 years ago.

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; }

#63 wontfix Cannot compile moo Mbx

Reported by Mbx, 6 years ago.

description

I get,



 make
/usr/bin/m4 -E -D srcdir="/usr/local/source/xcache" -D builddir="."  /usr/local/source/xcache/processor/main.m4 > ./processor.out.tmp
AUTOCHECK INFO: runtime autocheck Disabled (optimized build)
AUTOCHECK WARN: zend_compiled_variable: missing structinfo, dont panic
AUTOCHECK WARN: zend_try_catch_element: missing structinfo, dont panic
AUTOCHECK INFO: zend_brk_cont_element: processor looks good
AUTOCHECK INFO: HashTable: processor looks good
AUTOCHECK ERROR: ==== calc zval =================
AUTOCHECK expected: value,refcount,flags,type,is_ref
AUTOCHECK missing : flags
AUTOCHECK WARN: zend_arg_info: missing structinfo, dont panic
AUTOCHECK INFO: zend_constant: processor looks good
AUTOCHECK WARN: zend_property_info: missing structinfo, dont panic
AUTOCHECK INFO: zend_class_entry: processor looks good
AUTOCHECK INFO: znode: processor looks good
AUTOCHECK INFO: zend_op: processor looks good
AUTOCHECK INFO: zend_op_array: processor looks good
AUTOCHECK INFO: xc_constinfo_t: processor looks good
AUTOCHECK INFO: xc_funcinfo_t: processor looks good
AUTOCHECK INFO: xc_classinfo_t: processor looks good
AUTOCHECK WARN: xc_autoglobal_t: missing structinfo, dont panic
AUTOCHECK INFO: xc_entry_data_php_t: processor looks good
AUTOCHECK INFO: xc_entry_data_var_t: processor looks good
AUTOCHECK INFO: xc_entry_t: processor looks good
AUTOCHECK ERROR: ==== store zval =================
AUTOCHECK ERROR: ==== restore zval =================
AUTOCHECK ERROR: ==== dprint zval =================
AUTOCHECK ERROR: ==== dasm zval =================
AUTOCHECK ERROR: ==== asm zval =================
make: *** [processor.out] Error 1
#64 fixed Strict Standards on key/current functions moo rtshome

Reported by rtshome, 6 years ago.

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

Note: See TracQuery for help on using queries.