partyzant
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Auto Update to WordPress 4 Alpha2. restore from backup files and database
Forum: Fixing WordPress
In reply to: Speeding up loading of 100 images on a post pageMaybe do some thing like this http://m.dziennik.pl/auto/premiery-auto/rewolucja-w-volvo-pierwsze-zdjecia-nowego-modelu-z-napedem-na-cztery-kola check with firebug how it works. It loads 1x1px placeholder for each image on load of page and then replace it with correct image src with javascript.
Forum: Fixing WordPress
In reply to: the_content filter is no workingAfter some debuging i’ve found the cause of this problem, it was feedwordpress plugin which has add_filter(‘the_content’, ‘feedwordpress_restore_syndicated_content’, 1000)
Forum: Fixing WordPress
In reply to: the_content filter is no workingCan you post a link to a page where the problem can be seen?
No, this is test page on localhost. I’ve also find out that when I echo $azx variable inside test_display function it prints post content twice.
Forum: Hacks
In reply to: yarpp kills mysql serverMy code: http://pastebin.com/S2S4bg2K
Forum: Plugins
In reply to: wp_insert_post and tax_input problemsI have the same problem… is there anyone who knows the solution???
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] How many pages can be cached?I don’t think increasing the memory limit can help, now i have about 10000 pages, my target is 150000 pages so if I increase memory limit twice it wont help much.
I’ve fount that this piece of code generates the error:for($i=0; $i<count($pages); $i++) { $page = get_page($pages[$i]); if($page->post_status == 'publish' && $page->post_name != 'tag' && $page->post_name != 'strony') $pages_published[] = $page->ID; }Maybe there is a way to free memory during script execution, I’ve tried:
unset($page) and $page=null at the end of for loop, but it not works.Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] How many pages can be cached?Hi,
I have too many pages problem too. I’m creating SEO web base and I’ve generated several thousands pages. I’ve also created “page cloud” plugin to display in widget 25 random page links and I get error in this widget:
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 24 bytes)
Is there any solution for this issue appart from reducing pages amount?