Joomla Multi Ads Extension

I got a new Joomla extension from my favorite website (in Thai) of which I am a fan. It is the Multi Ads extension which will help you organize easily your AdSense or other advertising formats in your Joomla website.

I was stuck with it for about 15 minutes about how to put the HTML code as they advised even I read the Joomla Multi Ads Tutorial because, firstly, I thought that we can put it in an easy way like when we want to put an image, we just insert < img src="..." / > tag and then the image is displayed on our blog or web as we can do in Hi5 web but it is not like that actually.

I could make it up finally with FULL HTML code in it.
< html >< body >< img src = "..." / >< /body >< /http >

I do not know if there is a better way than I did. If anyone knows, please give me an advice. By the way, I did not yet test the AdSense ad with this Multi Ads extension on the Joomla website. I will do it soon for a try.

[Joomla] Uploading Error - JFolder:create: Infinite loop detected

I am a Joomla newbie who found errors and searched around to find the way out. For Joomla! users who found the below error while uploading a component or a plugin to a web hosting server, I would like to suggest the following solution which I believe it can help you as it did for me.

---------------------------------------------------------------------------
JFolder::create: Infinite loop detected
Warning! - Failed to move file
/home/**yourusername**/public_html/libraries/joomla/filesystem/folder.php on line 362
---------------------------------------------------------------------------

The problem is the incorrect folder path. Please open the Configuration.php file and do the following;

Find var $log_path = 'yourCurrentPath';
Please change to var $log_path = '/home/yourUserName/public_html/logs';

Do the same for tmp path
Please change to var $tmp_path = '/home/yourUserName/public_html/tmp';

The username I mentioned is the one you use for your website. Then save and try to upload your file(s) again.

Please also make sure that the folders are Chmod 777. Otherwise, there will be many errors showing like "failed to copy or failed to move the file".

Good luck :)