WP upgrade 2.5 to 2.7.1
Finally I got annoyed by the upgrade warning and did the thing. Looks fine (at least for me). Let me know if something went wrong from your side.
Finally I got annoyed by the upgrade warning and did the thing. Looks fine (at least for me). Let me know if something went wrong from your side.
It seems that the upgrade of WordPress went fine. Now I have the latest version of WP. Also upgrade all plugins and did some minor cleanup (like removing disabled plugins and similar).
If you will notice any problems here, please let me know.
It’s been a while I upgraded my WordPress installation, so I think it’s time now. If you will see any problems on my blog, know – I am upgrading now )))
Hopefully will go ok and in few hours I will have all done.
I see a lot of hits for the Open Transport Tycoon Deluxe post which I made quite a long time ago and where I have mentioned the download of the full pack of OpenTTD with original data files. This download is not available from that server anymore (for some time already as well), but since I (still) have data files, here is an archive of a full data folder from OpenTTD, just get what is missing from there for your setup.
I have finally found what was wrong with some plugins (including SK2) on my WP installation. First of all, a couple of times I was receiving the error that running script had exceeded the max amount of allowed memory (which was 8M), while trying to push 14M, so I just increased the number to 16M in the /etc/php.ini.
Second, I have increased the size of the output buffer, which is initially 4096, to 8192. The idea is that output buffer allows scripts to issue headers after (or in the middle) of the content outputting. This is done by buffering the content output, then catching the header, displaying it and then displaying the content. In my case I had a problem: while trying to activate some plugins, I was given a dialog to download the plugin.php file. This behavior was caused by wrong/missing header, because the amount of buffered data was exceeding 4096 bytes. By doubling this amount I solved all my problems for the time being.