-
Posted to
Windows Cache Extension for PHP
by
voidstate
on
10-08-2009, 5:29 PM
I needed to pick up new changes.Looking forward to using wincache_refresh_if_changed(null)
Thanks
-
Posted to
Windows Cache Extension for PHP
by
voidstate
on
10-06-2009, 8:31 AM
When uploading new code onto the server, what is the best way to clear the opcode cache? Should I recycle the application pool, restart the site or something else?
Thanks
-
Posted to
PHP Community
by
voidstate
on
09-05-2008, 11:14 AM
I haven't been able to find anything either there or by Googling.
-
Posted to
PHP Community
by
voidstate
on
09-04-2008, 8:41 AM
Hi
I have created a virtual directory in IIS 7. The virtual directory is named "sites" and points to "C:\sites".
I want PHP to manipulate the files in this directory but I get the following error message when PHP tries to read it like this:
echo '<pre>';
$dir = scandir( 'sites' );
print_r( $dir ...
-
Posted to
IIS7 - URL Rewrite Module
by
voidstate
on
09-02-2008, 4:19 PM
I want to rewrite urls so that I can pass addresses like:
mypage/get1/value1/get2/value2/get3/value3.htm
and have them translated into:
mypage.htm?get1=value1&get2=value2&get3=value3
but I can't figure out how to do a loop from the online posts about the IIS7 Url Rewrite Module. I want to be able to handle any ...