If you have problem with links in your custom created module, like instead of http://www.milosev.com it shows you http://www.milosev.com/http://www.milosev.com then try to disable System - SEF plugin.
In this category I will try to write about creating extensions in Joomla! First, I will start with creating components. This example, I took from Professional Joomla!, which I simplified, this is not MVC, as much as I think, but it is good as a...
After reading few books, digging Internet, finally I found way to use mootools Ajax in Joomla! Point is in format=raw. If you have any component, if you add format=raw in link, for example index.php?option=com_ajax&Itemid=60&format=raw you will see...
If you want instead of adding event to button in custom form to add ajax to some link (javascript function) here is how you can do it:Â function show(options) }); ajaxRequest.request(options); ...
If you want to add your javascript to Joomla! header from your component, you can do it like this: JHTML::_('behavior.mootools'); $doc =& JFactory::getDocument(); $js = " function show(options) }); ajaxRequest.request(options); } ...
CRUD (Create Read Update Delete) is the name given to the four common data manipulation tasks. The first thing we need to do in our class is to define the public properties. The public properties relate directly to the fields and must have exactly...
To download file you can use php script as it is described here, but in Joomla! you must add this line of code: Â while( @ob_end_clean() ); Taken from here.