Tagged Questions

Joomla! is an open-source CMS written in PHP and powered by an MVC-oriented framework. Over 7,600 extensions are available and can be installed through the admin interface.

learn more… | top users | synonyms

5
votes
2answers
495 views

Add new image filed 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 ...
3
votes
2answers
46 views

how to protect joomla administrator folder?

index.php $admin_cookie_code="1234567890"; setcookie("JoomlaAdminSession",$admin_cookie_code,0,"/"); header("Location: /administrator/index.php"); .htaccess file RewriteEngine On RewriteCond ...
2
votes
1answer
47 views

ajax not working in breezing forms component of joomla [closed]

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: ...
2
votes
1answer
116 views

What is the best secure way to POST and GET data in Joomla 1.7?

I am developing a joomla component and I want to know what is the best secure way to POST and GET data through a form submit. <form action="index.php?<?php echo JUtility::getToken()?>=1" ...
2
votes
2answers
100 views

Multi-page registration system: How to maintain state along the way?

I built a system to allow new members to join an organisation last year when I was just starting out as a programmer. It's a multi-step process across several pages that concludes after a successful ...
2
votes
2answers
416 views

How to suppress Joomla's JUser::_load:Unable to load user with id error message?

I have a Joomla 1.6 installation that operates on two databases: joomla's database and domain-specific database, both on the same MySQL server. Some entities in the domain-specific database keeps ...
2
votes
2answers
2k views

Creating a Joomla 1.7 Content Plugin

I'm trying to create a Joomla 1.7 content plugin that, ultimately, will send an email when a brand new article has been created on the backend. My plugin, while it installed correctly, doesn't seem to ...
2
votes
1answer
95 views

How can I unit test a Joomla 1.5 or 1.6 module with PHPUnit?

I can not find a tutorial on the subject. Before running the unit test, the Joomla framework must be loaded ... A code example would be welcome, thanks !
2
votes
1answer
983 views

Joomla 1.6 JCategories::get() method produces 'PHP Fatal error: Allowed memory exhausted' in custom MVC component

I'm implementing a custom MVC component following the Joomla 1.6 Documentation. I am running into a problem when trying to use JCategories::get() to obtain a list of categories and their children ...
2
votes
2answers
1k views

Joomla 1.6 Component Tutorial

Aside from the HelloWorld Tutorial, are there any other tutorials/books available with regards to component development on Joomla 1.6 ? Although the HelloWorld guides the user through chapters/steps, ...
1
vote
1answer
29 views

Joomla JCE add custom component data to link browser

I am using Joomla 1.6 along with JCE 2.0.15 I also have created my own component and I want to be able to link to pages from this component and to be more precise, I would like them to appear in the ...
1
vote
1answer
32 views

How can i create new Component in joomla1.6?

i am new in developer of joomla. which is the best way to develop joompla component. MVC or simple joomla Component. Anyone here help me and give me suggestion what to do? Is there any link for MVC ...
1
vote
1answer
47 views

Using the same credentials to login to two Joomla! sites (1.5 & 1.6)

I am looking for a way for my users to be able to login to both of my Joomla sites (one running 1.5 and the other 1.6) using the same credentials. For example, if a user registers to my Joomla1.5 ...
1
vote
2answers
38 views

Joomla : Which module is this part of?

I am working on Joomla 1.5 right now and was wondering if there is a way to figure out, from the UI, on which module this is part of ? Eg, there is a picture viewer on the home page and I want to know ...
1
vote
1answer
39 views

Significance of a using colon in Joomla URL

I need to know, if joomla gives any significance to a colon in within component or view? Is there something in this naming convention?
1
vote
2answers
86 views

joomla 1.6 : how $app object print out the entire page contents

I was checking joomla 1.6 index.php and I found the following code at the last line echo $app; this prints the entire page contents. I just printed out the contents in this object using ...
1
vote
3answers
45 views

Want to buy a Joomla Template and Extensions

I want to build an E commerce website where products can be sold and users can customize products look and style etc right on the website and then place an order. For example check the website ...
1
vote
2answers
189 views

Joomla: multiple joomola sites under 1 domain/1 installation of joomla?

Basically I am wondering if i can have 1 main site (e.g. 'www.mysite.com') with one look/template applied and articles associated with that site, then a completely different site with a different ...
1
vote
0answers
141 views

User Group Selection at registration in Joomla1.6

I am developing a job site for a client where he needs to be able to have his user registered either as an "Employer" or as a "Job Seeker". As with the new Joomla we do have different Access levels i ...
1
vote
1answer
194 views

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 ...
1
vote
1answer
631 views

Joomla 1.6 External PHP Interaction Issue

I am new to working with Joomla and I am adapting an external php class I wrote for v1.5. Without going into all the details, basically, I use a function to load the Joomla environment after which ...
1
vote
3answers
1k views

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 ...
1
vote
1answer
76 views

what is free registration components in joomla?

I am using joomla 1.6.3 version . Now i need to enter some form data from front page and administrator can view, edit and delete that data. For the above task any components available in joomla ...
1
vote
1answer
207 views

How to get an url to a menuitem from an article id in joomla 1.6?

I'm writing a module that has articles. I would like these article to end with the "read more" button. This button should redirect to a menuitem pointing to the full article if such a menuitem exists, ...
1
vote
1answer
808 views

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 = ...
1
vote
0answers
191 views

How to remove left side panel on component page?

I am using Joomla 1.6.5 with default theme "Beez2 - Default". I have created a top menu item with type as external link which has link 'index.php?option=com_sample'. When i click on this menu item i ...
1
vote
1answer
84 views

Joomla javascript css class not updating

im using a joomla 1.6.4 install and have a custom css/javascript drop-down menu in my theme. The main root element of the menu (ul) has an id of 'topnav'. When the user clicks one of the (li) menu ...
1
vote
1answer
511 views

How to Create Select Box in Registration Form in Joomla 1.6

I am using Joomla 1.6 and I have created a text field in registration form (which is driven by components\com_users\models\forms\registration.xml) like this: <field name="City" type="text" ...
1
vote
1answer
50 views

Dolphintabs menu is not working on joomla 1.6

i trying to use dolphin.js in joomla 1.6 template, buut i have a problem, the dolphin menu is not working, and i got an error message : document.getElementById(this.subcontainers[i]) is null ...
1
vote
1answer
48 views

Temporarily make server file public

I have a Joomla! site and for each user I have an image. What I want is to keep the image private to the user but temporarily make it (well, a copy) public. My thinking was to have the user click a ...
1
vote
0answers
87 views

How to apply multi query in joomla1.6 component

I am trying to create my own custom component in joomla1.6. I am unable to call multi query in model file. can any one give me the expample of it?
1
vote
1answer
365 views

Joomla 1.6 and CakePHP integration

I dont seem to understand how do you integrate CakePHP framework with Joomla 1.6 CMS? I have been reading and JAKE is commonly mentioned for the integration. How does Jake assist in the ...
1
vote
1answer
461 views

Making JSON AJAX response in custom Joomla component

I am been trying to make AJAX communication between my jQuery frontend and my custom Joomla component. My JSON response is ready but the problem is that the component prints HTML instead and the JSON ...
1
vote
1answer
201 views

Joomla 1.6 Upgrade from 1.5

http://docs.joomla.org/Adding_a_multiple_item_select_list_parameter_type Thats the documentation for the way to add a custom parameter type to your module and if you look at the bottom round there is ...
1
vote
1answer
562 views

Joomla Article add custom Options

I am trying to add extra fields to the Backend page of Joomla-Articles. Because I want to use them in my layout override. Therefore I tried to change parameters in: ...
1
vote
2answers
1k views

Need help with joomla 1.6 module custom basic settings?

I am writing an integration module for our product to go into any Joomla 1.6 page. I need some help with getting custom data (from the API) into the basic settings part but can't seem to find a way to ...
1
vote
2answers
1k views

Any good Testimonial module / component in Joomla 1.6?

I am new to Joomla 1.6. I have a problem while trying to install "Freestyle Testimonials" (File Name - "freestyle_testimonials_lite-1.6.0(1).zip"), a component for testimonials for Joomla 1.6, as ...
0
votes
1answer
15 views

Joomla! Username Greeting

How can I take advantage of the Joomla! 1.6 login variable that displays the greeting of an authenticated user? In other words. Let's say I wanted to greet the user somewhere else how can I do so? ...
0
votes
3answers
32 views

My Joomla! site loads too slowly - how to fix this?

I have a problem in my Joomla! site. My site loads very very very slowly and sometimes return an error which is : Fatal error: Maximum execution time of 30 seconds exceeded in ...
0
votes
1answer
39 views

Is it a PHP or Joomla! issue? (or perhaps I'm missing something about the output buffering)

I'm trying to integrate VideoJS in a plugin for displaying videos in blog and article view/layout. First of all, I find the plugin tag using a regular expression and the source for the video, which ...
0
votes
1answer
50 views

How to set plugin params programatically? (Joomla 1.7)

Is there any way to set a plugin parameter programatically from within a plugin? I've tried: $this->params->set('param_name', 'value'); This doesn't work, although many forums suggests it ...
0
votes
1answer
63 views

how to set pagination in Joomla Search Plugin

i have in problem i make a Plugin for search. its work good and no problem ahead to search result but i dot got pagination in my search result. i dont know how to set pagination in Joomla search ...
0
votes
1answer
112 views

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 ...
0
votes
2answers
394 views

joomla 1.7 : overriding pagination.php not working

I installed joomla 1.7(window/xampp/php 5.3) and my current template is beez_20. I have to override the pagination.php and to do so I copied the pagination.php from \libraries\joomla\html to ...
0
votes
1answer
77 views

article moves to K2 Article in Joomla 1.7

i use Joomla 1.7 and i recently install K2 Extension i want to move my article to K2 article how it is posible ?
0
votes
1answer
69 views

joomla how to get getListFooter on home page

I am using joomla 1.7.3 I have a large number of articles on home page with pagination. I have to show a drop down box for users to choose number of items to show on home page. I have edited ...
0
votes
1answer
170 views

How to insert into multiple tables with foreign keys in Joomla?

I want to know how to handle mysql tables created with constraints in joomla. for a example, theater_table id , name, description, image, address, tel, fax ,email theater_facility_table id, ...
0
votes
1answer
67 views

Joomla 1.6 Add Field to registration that requires a certain code in order to go through

So, I know how to add the field into the form I just can't get it to take the secret code and evaluate it. Files that I understand to be essential in doing this: ...
0
votes
1answer
396 views

How do you add fields to com_content in Joomla! with a plugin and store the data in its own table?

I'm running Joomla 1.7 and I know that it has the ability to add custom form fields to components with a plugin. There is a sample plugin located at: /plugins/user/profile This plugin allows you to ...
0
votes
1answer
41 views

changing favicon in joomla 1.6

How can we change the favicon in Joomla 1.6? Do I just create a 16x16 px images, convert it to a .ico format and store it as favicon.ico under images?

1 2 3