carcus
Forum Replies Created
-
Forum: Plugins
In reply to: [$$] W3TC Directory & Query String Blocking Not WorkingTo add there is also an error from trying to get the zipped download if this helps:
[Fri Oct 08 18:04:46 2010] [error] [client xx.xx.xx.xx] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 51352484 bytes) in /var/www/vhosts/domain.com/httpdocs/blog/wp-content/plugins/w3-total-cache/inc/define.php on line 233
Which is this function:
/** * Check if content is HTML or XML * * @param string $content * @return boolean */ function w3_is_xml(&$content) { return (stristr($content, '<?xml') !== false || stristr($content, '<html') !== false); }It wouldn’t make sense to increase the memory limit in php.ini. Maybe there is some code work around? Thanks again.
Forum: Plugins
In reply to: [$$] W3TC Directory & Query String Blocking Not WorkingHi, sorry to bother your old thread. I too am having an issue with a particular page being cached.
The url in question is this:
http://domain.com/blog?downloadid=somelongrandomkey
If I read your post right to prevent w3tc from caching this query I have to switch to basic caching? I’ve tried using downloadid= under “Never cache the following pages” but haven’t had it work so well.
I have everything enabled except for CDN on the general page. If you need more specifics let me know!
If I get this solved the community over at wp-ecommerce (getshopped.org) would really appreciate it. As of right now people with downloadable products are removing w3tc from their plugins because it is breaking the download link. Thanks in advance and thanks so much for w3tc it has done wonders to a heavy traffic site!
Forum: Themes and Templates
In reply to: Faux column hellFigured it out on my own. . .by adding an extra div before the footer (which conveniently could be used for ads later) and clearing both. duuuuuh. Sometimes you just need to walk away and take a break.