Questions tagged [joomla1.6]

Joomla! is a free and open-source web content management system written in PHP. It is released under the GNU General Public License. This tag is for programming-specific questions referring to version 1.6.

Joomla! 1.6

Joomla! is a free and open-source web content management system written in PHP. It is released under the GNU General Public License.

Version 1.6 of Joomla! was released in January 2011 and the support ended in August 2011.

Resources

Related Tags

165 questions
10
votes
1 answer

joomla assets table purpose

could you please explain to me what is the purpose of assets table in joomla? I have script for import articles from .csv (from .xls) that just inserts new rows in content table with asset_id column (foreign key) set to 0. I haven't find any…
Buksy
  • 11,571
  • 9
  • 62
  • 69
8
votes
8 answers

Difference between Joomla 1.5 Joomla 1.6 and joomla 1.7?

What is the difference in versions of Joomla CMS i.e. Joomla 1.5, Joomla 1.6 and joomla 1.7 ?
Rohan Patil
  • 2,328
  • 1
  • 16
  • 23
6
votes
2 answers

Add new image field to Joomla 1.7 com_content

I'm trying to make some changes to com_content component of Joomla 1.7 There are not many docs on specific topic for Joomla 1.7 Maybe you could help me out on this one. I want to have a separate field for extra image in com_content, specifically to…
mrGott
  • 1,066
  • 3
  • 18
  • 53
6
votes
1 answer

joomla - where is category ordering stored?

I have a question that might seem simple, but yet I was unable to find the answer. Unlike articles, which are stored in table jos_content, categories in table jos_categories lack any column named ordering or any other that would have the desired…
Elwhis
  • 1,241
  • 2
  • 23
  • 45
6
votes
1 answer

Joomla | PHP: Have a category blog listing / latest articles within the menu structure

So I have a menu where some of the menu items are dynamic category listings. Something like this within the left nav (for example): Menu One Category Two - Dynamic Article 1 - Dynamic Article 2 - Dynamic Article 3 Menu Three Category Four -…
Gisto
  • 887
  • 2
  • 16
  • 32
5
votes
5 answers

Using JRoute::_() in Joomla administrator

I have a custom component I'm working on and I'm writing an import script which is running in the administration area. I have the following code: $newUrl = ContentHelperRoute::getArticleRoute($import->article_id.':'.$import->alias,…
udjamaflip
  • 682
  • 1
  • 8
  • 24
5
votes
2 answers

Joomla: Call helper function from within a model?

I'm starting off with both php and Joomla development, and finding it difficult working within Joomla to do some fairly simple stuff. Went through the Joomla MVC example and Lynda (and have built a few simple views so far). I have a helper…
Gisto
  • 887
  • 2
  • 16
  • 32
4
votes
1 answer

Different ways of building a query in Joomla?

Just starting out, this should be a simple one but I haven't been able to find a good source, especially with the 1.5 to 1.6/1.7/2.5 changeover. Building a component and among other issues keep running into syntax issues. For example, here's one way…
Gisto
  • 887
  • 2
  • 16
  • 32
4
votes
4 answers

How to add new admin menu items without reinstalling component in joomla?

I have been developing a component for Joomla 1.7.x, during development I need to add new component menu items to admin menu, it was easy by adding new rows to components table in DB in Joomla 1.5 times, but now it seems complicated to add a menu…
Umut KIRGÖZ
  • 2,105
  • 3
  • 22
  • 29
4
votes
2 answers

Programmatically adding an article to Joomla

I am very new to Joomla (frankly just started exploring the possibility of using Joomla) and need help with programmatically adding articles to Joomla backend tables (please see details below). Also along the same lines, I would like to understand…
user891898
  • 41
  • 1
  • 3
4
votes
3 answers

How do you use JRoute in Joomla to route to a Search menu item?

I am trying to create a a box in a template in Joomla! that will display all of the keywords and link them to their appropriate search page. I have a menu item set, however, I don't want to hard-code the menu item into the template, so I want to use…
4
votes
5 answers

Joomla PHP: Checkbox won't uncheck

Making a simple component. If I save a new record with the box checked, it saves fine. If I go back and uncheck a previously checked item it reverts back to checked. I thought it had something to do with a hidden field, played with putting one of…
Gisto
  • 887
  • 2
  • 16
  • 32
4
votes
2 answers

Disable user profile edit?

How do I stop registered users from changing their details like their username etc (via edit profile) in the frontend?
theoth
  • 127
  • 3
  • 11
3
votes
2 answers

Joomla: Write and call a helper function in a component

Fledgling Joomla / PHP developer, hitting a wall understanding how to do this. Everything I found searching has been for older versions of Joomla or other frameworks and so it's all confusing the first time around. I want to have a helper function…
Gisto
  • 887
  • 2
  • 16
  • 32
3
votes
1 answer

ajax not working in breezing forms component of joomla

function ff_chk_username_unique(element, action) { alert(element.value); alert(action); var actiona="http://localhost/myproject/check/check_username.php"; var form_data = { username: element.value, }; alert(actiona); …
KiNG H
  • 161
  • 1
  • 14
1
2 3
10 11