Blogspot import limits



I haven't spent a lot of time engaged in the nuances of Google BlogSpot usage, I have however, stumbled onto measures put in place to limit the number of imports one can perform in a day, an unfortunate lesson to learn at this time, luckily the blog affected is not mission critical.

The plan was to export posts, perform a mass find/replace then import changes, but that did not work out as planned which led to a content purge, followed by the import no longer working as expected. Warnings would have been helpful, but that may be a bit too much to ask since each attempt after would claim itself a success but fail to produce the goods. 

My final attempt did return a response which brought me  here: 

https://support.google.com/blogger/thread/34774222/sorry-but-you-have-exceeded-the-maximum-number-of-imports-please-try-again-later?hl=en&msgid=34817302

Lesson learned so far: BlogSpot import is super duper finicky 😕


AH00534: apache2: Configuration error: No MPM loaded



Not too long ago a number of changes were applied to a local Apache2 server to fix a problem with HTTP2 support. All seem well until a recent reboot which resulted in the Apache2 failure.

The TL/DR solution was to simply disable then enable the PHP modules in use. In this scenario it is PHP7.4

sudo a2dismod php7.4

sudo a2enmod php7.4

sudo systemctl restart apache2

 

You can read more about the solution here:

https://www.linuxquestions.org/questions/linux-newbie-8/apache2-ah00111-config-variable-%24%7Bapache_run_dir%7D-is-not-defined-4175635791/

 

 

goBloggerCrawler Blogger Web Crawler in Go

Go-based web crawler used to efficiently extract structured data (titles, video URLs, and tags) from Google Blogger sites using concurrent p...