Tag: "joomla"
Javascript Errors in core.js - Joomla Administration Component
I am building a Joomla Component. I found there are some Javascript errors in core.js when I click the actions. I have found out these two variables are required. Code<input type="hidden" name="boxchecked"/><input type="hidden" name="task"/>… more »
Tags: joomla
Installation error - Could not create directory plug-in
When I install a new plug-in, I got this error: "JFolder::create: Could not create directory plug-in" Later, I found out the cause. The parameters in configuration.php are not configured correctly. Please make these two lines in configuration.php… more »
Tags: joomla
Good captcha plug-in in Joomla
I got a lot of spam from the Joomla contact form, I need a captcha plug-in. Actually, there are a lot of anti-spam plug-in in Joomla. But they are fairly complex, some of them even have a custom-build contact form. That is too much. After I spent some… more »
Tags: joomla
JSON View in Joomla
I have tried to call the json view in the controll, like this:
Code$view = &$this->getView('view','json','prefix'); $view->display();
But that is still with the default html template, even I have used, json_encode.
I… more »
Tags: joomla
How to pass the value from the controller to a view
I am implementing a MVC component. I wish to pass a value from the controller to the view for displaying. This is very easy. You need to assign the value from the controller. Code$view =… more »