Custom Query (267 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (10 - 12 of 267)

1 2 3 4 5 6 7 8 9 10 11 12 13 14
Ticket Resolution Summary Owner Reporter
#198 fixed xcache with streams on ZEND_ENGINE_2 moo lang@…
Description

Hi xcache developers, this patch permits to process streams from xcache on ZEND_ENGINE_2. It is very helpfully when a php module use streams.

  • xcache-1.2.

    diff -u -r -N xcache-1.2.2/xcache.c xcache-1.2.2-patch/xcache.c
    old new  
    727727       php = xce->data.php; 
    728728 
    729729       if (XG(stat)) { 
     730 
     731#ifdef ZEND_ENGINE_2 
     732               php_stream_statbuf ssb; 
     733               php_stream_wrapper *wrapper = NULL; 
     734               char *path_for_open = NULL; 
     735 
     736               wrapper = php_stream_locate_url_wrapper(filename, &path_for_open, 0 TSRMLS_CC); 
     737               if ((wrapper) && (wrapper->wops) && (wrapper->wops->url_stat) && 
     738                   (wrapper != &php_plain_files_wrapper) && 
     739                   (SUCCESS == wrapper->wops->url_stat(wrapper, path_for_open, PHP_STREAM_URL_STAT_QUIET, &ssb, NULL TSRMLS_CC))) { 
     740                       pbuf = &ssb.sb; 
     741                       goto stat_done; 
     742               } 
     743#endif 
     744 
    730745               if (strcmp(SG(request_info).path_translated, filename) == 0) { 
    731746                       /* sapi has already done this stat() for us */ 
    732747                       pbuf = sapi_get_stat(TSRMLS_C); 
#75 invalid xcache not working moo paldays
Description

Hello, i was installed xcache, but i didn't c it in phpinfo page i use this way to install http://trac.lighttpd.net/xcache/wiki/GettingSource

i have php 4.4.4 and apache 1.3

please help me to run xcache

regards,

HaSSaN

#105 fixed xcache module is not initialized correctly moo moo
Description

Error message: XCache is not loaded

php info shows no xcache module except xcache version

1 2 3 4 5 6 7 8 9 10 11 12 13 14
Note: See TracQuery for help on using queries.