WORDPRESS
WordPress.com Stats Plugin Problem
Oct 4th
If you have a self hosted blog running on WordPress platform and using WordPress Stats plugin you may noticed that the amazing stats plugin not working. Couple hours ago I was trying to get my stats report when a wordpress login window popped up and kept ask for my credentials in an infinite loop.
Even though the mobile phone wordpress.com login works fine you won’t be able to check your stats trough it. On the other hand your wordpress.com blog is not affected if you have one.
Deleting your browser history will not fix the issue so don’t even bother.. Some other folks suggested deleting the browser cookies that won’t work either as well as reinstalling the plugin so do waste your time; the issue is not related to the user end, more likely it is something related to wordpress.com end. (more…)
Free WordPress Headers for Kubrick Theme
Feb 27th
Them support: Kubrick Theme by Michael Heileman (Default WordPress template) Header size: 192, 740 pixel Set Name: Almost Black Note: This work licensed under a Creative Commons Attribution-Noncommercial-Share Alike 2.5 Australia License. You may use any header for your own blog ,site, webpage.. etc, you may NOT redistribute any of them unless a link to this BLOG provided (more…)
Fixing Fatal error: Allowed memory size of 33554432 bytes exhausted
Dec 20th
Wordpress
If you installed a fresh copy of WordPress or you just upgraded to the latest version of WordPress 2.9 you may encounter the memory limitation problem with a massage like:
Fatal error: Allowed memory size of 33536532 bytes exhausted (tried to allocate 2587395 bytes) in /home/xxx/public_html/wp-includes/http.php on line 1331
This problem arise due to maximum memory specification amount that can be consumed by PHP, In order to fix such an issue you may apply one the following:
(1)
- Back up and download the file: wp-settings.php then open it using appropriate php editor (wordpad/notepad will do the job)
- Search within the file for
define('WP_MEMORY_LIMIT', '32M');
- Change 32M to 64M or 96M:
define('WP_MEMORY_LIMIT', '64M');
- Upload the newly configured file and replace it with the existing one






