Questions tagged [joomla-extensions]

Extensions for Joomla! an open source content management system for web sites, which can be heavily extended. Joomla questions about programming and administration are best asked on https://joomla.stackexchange.com

Joomla! is an open source content management system for web sites which can be heavily extended.

Currently about 6238 extensions are registered in the Joomla! Extension Directory.

Related tags:

1080 questions
2
votes
1 answer

Joomla custom form field type

Hi guys I am developing custom form field type in Joomla 2.5/3 . But my code doesn't work, I mean when I press on it, it doesn't show message and also it has a different ID. here my code: {module}/elements/testfield.php
Irakli
  • 1,151
  • 5
  • 30
  • 55
2
votes
2 answers

Making joomla Extension in my own way

I've tried to understand the structure of joomla. I've read many kinds of documents and tutorial regarding about how to make extensions in joomla. I can't able to understand it fully. I still had some doubts on it. I've made a simple component in…
Oh What A Noob
  • 507
  • 1
  • 10
  • 33
2
votes
1 answer

Jlog Getinstance in Joomla 3.0?

I made a small extension for Joomla 2.5 and it worked. But the issue is when i trying to make it compatible with Joomla 3, I get errors about JLog::getInstance method is not found. I know that they removed it and it got replaced by JLogLogger but…
BiGGiE0344
  • 141
  • 9
2
votes
3 answers

joomla 3 vs 2.5 extension development differences

I am joomla user and I have created some extensions's and templates for joomla 2.5, but now I upgraded to joomla 3 because of bootstrap framework and responsive templates. I need your help here: How to update joomla 2.5 extension to work with joomla…
Irakli
  • 1,151
  • 5
  • 30
  • 55
2
votes
3 answers

Sanitize input in joomla

I have code like this in my Joomla plugin: $some_id = $_GET["someid"]; $db = JFactory::getDBO(); $db->setQuery("SELECT * FROM #__table WHERE id = '$some_id'"); $result = $db->loadRow(); Does Joomla sanitize this automatically, or i need to do…
SomeoneS
  • 1,207
  • 2
  • 19
  • 34
2
votes
1 answer

Why Joomla! K2 does not support Chinese search?

I used K2, but I have found search Chinese have no result via K2 search model. Joomla 3.0.X, K2 v2.6.1 file: /plugins/search/k2/k2.php . WHERE ("; if ($pluginParams->get('search_tags') && count($itemIDs)) { …
ray
  • 41
  • 1
  • 4
2
votes
1 answer

Editor in custom code doesn't work

I've inherited some custom code running in Joomla 3.0.2 - we it's actually some standalone php/javascript that's run using Sourcerer (ie not a proper component). I need it to display an rich-text editor, so I'm trying to use the standard editors…
adamf321
  • 179
  • 1
  • 9
2
votes
4 answers

Referential CCK types in Joomla?

Using Joomla! 3.0 (Or 2.5, whatever works best), I'm needing to create a system comprised of three entity types: Artists -- Name, country of origin, links to social media/website, etc. Set -- Start time, end time, description Venue -- Name,…
aendra
  • 5,286
  • 3
  • 38
  • 57
2
votes
1 answer

Joomla: On extension update: Change table schema (remove column)

I have developed a Joomla extension and in the newest version the need to delete one column from a table belonging to my plugin has arisen. As far as I know there is no easy way to delete a column in Mysql only if it exists. Therefore, the only…
codeling
  • 11,056
  • 4
  • 42
  • 71
2
votes
3 answers

How do I survive from Joomla K2 image handling?

I have started a news website for a specific area of business one year ago. The website lists news and for every post there is a featured image. Unfortunately, there have been posted about 1500 news in a year and the website is taking 1,07Gbytes of…
Radolino
  • 1,834
  • 4
  • 26
  • 48
2
votes
1 answer

Joomla 2.5 Trying to get property of non-object error

Possible Duplicate: Trying to get property of non-object in I've come upon a problem when developing a custom component for joomla 2.5. I'm pulling data out of my database through a MVC structure. Everything is working fine, except when the query…
user1791818
  • 23
  • 1
  • 4
2
votes
5 answers

Joomla setRedirect doesn't work

I have a simple Joomla controller, but I can't redirect anything. According to the documentation: class MyController extends MyBaseController { function import() { $link = JRoute::_('index.php?option=com_foo&ctrl=bar'); …
Opi
  • 1,288
  • 1
  • 10
  • 14
2
votes
2 answers

Joomla Change Modules in Sidebar on diffrent Pages

I'm using Joomla 2.5.7 and want to ask, how I can change a bunch of modules in sidebar, when I change to another Page. An example to clarify my question: I have 3 Links at the navigation bar: Events Shop Blog and a Homepage as index.html…
kindisch
  • 766
  • 1
  • 7
  • 23
2
votes
2 answers

Get Joomla Website without FTP or MYSQL with Super User

I would like to know if it's possible to download/get a Joomla website without ftp or phpmyadmin. I have got super user account however I am having problems with an old developer. I want to get the website and move it to a new server. Are there…
uJoom
  • 21
  • 4
2
votes
1 answer

How to properly use the language files in joomla

As far as i could dig in thought google, i found something like: en-GB.whatever.ini en-GB.whatever.sys.ini From here some question: Can i use it without tag…
Kin
  • 4,466
  • 13
  • 54
  • 106