2
votes
Best practices for withstanding launch day traffic burst
I would at least factor out all static content. Setup another vhost somewhere else and load all the graphics/css/js onto it. You can buy some extra cycles offloading the serving of that type of c …
0
votes
Create Word Document using PHP in Linux
There are 2 options to create quality word documents. Use COM to communicate with word (this requires a windows php server at least). Use openoffice and it's API to create and save documents in w …
2
votes
How can I get PHP to use the same APC cache when invoked on the CLI and the web?
Not possible.. The only way to accomplish something like what your asking is to use something like memcacheD. Or run what you need to run through your webserver. What's running CLI that you cann …
