WordPress Blog Farmer 1.0.0 available
I've released the first version of my last small project, called "WordPress Blog Farmer".
It consist in a small script, with the capabilities of mass creating blogs on your WordPress 3.x installation.
Upload the script in your ftp, go to it, fill the form and go !
Go to the WPBF project page to download it.
Hope you'll enjoy it.
TYPO3 – Change files/images upload limit
Today I'll explain how to change the limit for files, images and other medias upload.
To do the trick, you have multiple changes to make.
TYPO3 – Get content element from extension code
I've not wrote something from long time, so today I give you a little snippet.
If you have to use in your extension a content element from another page, you can use this function to get it from it's uid :
-
function loadContentElement($uid) {
-
-
'tables' => 'tt_content',
-
'source' => $uid,
-
'dontCheckPid' => 1,
-
);
-
-
return $this->cObj->RECORDS($conf);
-
}
TYPO3 – Clear cache tips
I made this small post to put together all the "tips" I know about TYPO3 clearing cache. All tips are TypoScript config lines. No customization or extensions.
Here we go.
TYPO3 – Clean way to manage cache of your plugins
Today I want to share with you my way to manage cache of my frontend plugins.
I always implement the TypoScript option "no_cache" by this way.
