Joomla! is a free and open source Content Management System (CMS) for publishing content on the World Wide Web and intranets and a model–view–controller (MVC) Web application framework that can also be used independently.

learn more… | top users | synonyms

0
votes
0answers
11 views

Joomla 3.X - Remove tooltip script from header?

I'm trying to remove unwanted scripts from my custom joomla template header, which I've managed to remove everything except for this: <script type="text/javascript"> ...
0
votes
1answer
6 views

Altering the position of an article in Joomla 1

I am currently updating a web page for a company who are still using the very old Joomla 1. When creating a new menu item, I have found that an article is needed in order to create the page. My ...
1
vote
2answers
719 views

Joomla Form field type sql=“…WHERE condition”?

In Joomla 2.5, how can I do a form field type "SQL" with the condition "WHERE" in the SQL query? Example: <field name="catid" type="sql" query="SELECT id, title FROM #__table WHERE {condition}" ...
0
votes
1answer
25 views

Joomla k2 SEO consistency

This is a problem I noticed that should not be a problem. Basically in k2 if you have a tag view like so: http://site.com/menu/k2-root-item/tag-menu-item You can get a nice clean tag view that ...
0
votes
1answer
9 views

joomla component: controller not returning json

Why is my controller not returning my data in json format?....Please note that I am developing my component on Joomla 3.1.1. /hmi.php //Requries the joomla's base controller ...
3
votes
1answer
529 views

Joomla auto login

How can I auto-login a user in Joomla 1.5. I am using this code: global $mainframe; $db =& JFactory::getDBO(); $query = ‘SELECT `id`, `password`, `gid`’. ‘ FROM `#__users`’. ‘ WHERE ...
0
votes
1answer
14 views

TypeError: Joomla.JText._ is not a function

I'm trying to add language translations to my js files. So I've added this code to my view.html.php file in my component: JText::script('COM_TEST_ENTER_LABEL'); If I look at the html source I now ...
1
vote
0answers
21 views

Bootstrap Modal Iframe Joomla

I am currently Trying to alter this component to use bootstrap modal instead of its own, for the light box used by the component is not responsive at all.. and this component is built... very much in ...
0
votes
1answer
10 views

Modify component output using module…Joomla 3.0

I am a new developer in joomla. I just want to integrate joomla component to custom module.When a user install module then output of related component must be change as per module file automatically ...
0
votes
2answers
459 views

Using Joomla 2.5, is there a way to link from the frontend to a backend component without login?

The title says most of it, but is there a way to link from a page in the front end to a component in the backend WITHOUT asking the user to login again. Some thoughts come to mind, Sessions tables, ...
1
vote
0answers
7 views

Trigger multiple emails from breezing forms

Im using breezing forms1.7.5 on Jomla 3 I want to trigger two different emails to two different email ids on form submit Need Help
0
votes
1answer
12 views

Joomla - Fabrik 3.X - SQL Error

I have fresh install of Joomla 3.X and Fabrik 3 ( Official Package from Fabrik.com). I am new to fabrik and I am curious to find out its capabilities. If Fabrik fails me , I will drop using Joomla ...
0
votes
1answer
37 views

Assigning a link to a button before click

In my previous question I asked for help with refining the output of a URL in a specific syntax, I have now managed to get this right, but only for one instance. What I have researched is that I ...
0
votes
1answer
23 views

JRegistry exists() returns empty array

I was trying to save a form data to DB. In the controller save() function there is a statement $data = $model->validate($form, $data); But it always returns empty. I tracked down the problem to ...
1
vote
2answers
1k views

Joomla 2.5 template language override not working

How do I need to specify a language override for my template in order for Joomla! to use it? It's specific language tags for the COM_STORELOCATOR component. <languages folder="language"> ...
1
vote
2answers
2k views

Does Google App Engine has a support for Joomla?

Does Google App Engine has a support for Joomla?
1
vote
3answers
40 views

Php foreach data insert

Hi i have an app on Joomla + php + Mysql. The array passed into function where it will be insert into mysql database. Following are my code. public function setItems($params,$type) { $search_id = 1; ...
0
votes
2answers
30 views

Logging POST variables sent to a function

I am currently building a form that sends a user off to an external payment site at a certain point during the form. At this point I have provided two URLs to the service that is providing this ...
0
votes
1answer
22 views

SEF in Joomla 3.0

I am using joomla 3.0 and created one component in it. Now one Problem with SEF url. In my component i have implement MVC structure. my view structure like View/Name of View/tmpl/default.php My ...
0
votes
0answers
13 views

Add custom token in joomla 2.5

I need to add a custom token in this JS script, when using Joomla 2.5. What is the correct way to add a token? This (**CUSTOM_TOKEN**) doesn't work and I can't find relevant documentation about this. ...
0
votes
2answers
809 views

Getting 401 error in Joomla backend when trying to login\logout or edit anything

I have a website built on Joomla.Everything seemed to be going fine when all of a sudden I am noticing the following. When I go to the administrator login page, once I fill my details and press login, ...
3
votes
5answers
221 views

Quickest way to pick up Joomla?

What is the quicket way to pick up Joomla? Books, training etc? We want to train 10 Mid-to-Senior level Java developers in Joomla.
0
votes
1answer
18 views

I need some help on joomla, all links redirect to homepage

I have a joomla website, it is working fine when sef is off, but when i make check boxes in global configuration for SEF, then all the links inside menu redirect to homepage nor of any page open, ...
0
votes
3answers
1k views

Customize one of menu item background on Joomla

I've been trying to customize one the menu item on the joomla template i've currently use. Some of the menu I've used before normally display item ID when you view the source code but my template ...
0
votes
0answers
15 views

Payment form not works in Chrome, Safari and Mozilla, though works in Internet Explorer

This is the form. If I leave the form empty and I click to the button, it work. The Javascript validator send me an error. So it means that the button works, but in the moment I write all staff in the ...
3
votes
1answer
265 views

Joomla all menu items link to home

I experience a strange problem. When im a public my joomla wont display anything but the home page on every link less the registration form. THe Url is changing but the pagedisplayed is the same : ...
0
votes
2answers
1k views

Joomla: How to use update multiple rows at once in a component within MVC framework?

Just starting out with PHP and Joomla development, have one big obstacle that I can't wrap my head around. Building an assessment tool on the backend. I have one table ("questions") that contain a ...
2
votes
1answer
3k views

What are alternatives to window.addEvent('domready',function() for window.location.href?

We are passing the url page to our Admin Emails through the 'refer' id in Joomla using ... window.addEvent('domready', function() { document.getElementById('refer').value=window.location.href; ...
-1
votes
1answer
28 views

Get data from database in Joomla 2.5 [closed]

How to extract data from single database table? For example, i need data from table: categories, column: description with id 1 ?
1
vote
2answers
33 views

Is 123-reg shared hosting insecure for Joomla/PHP websites?

My client has a site on 123-reg shared hosting. 123-reg has a non standard implementation setting of display-errors = on in their default php.ini. The default and on other hosts I've used is Off. ...
0
votes
1answer
14 views

Create multi-language in joomla 1.7

I have to do a multi-language site in joomla 1.7.3. for this I active the module language selector and a plugin filter language and now the router of my page is http...../es but the browser show this ...
0
votes
1answer
19 views

Joomla Ajax download text editor

I'm trying to figure out how to load an editor box using Ajax this is for the admin side structure looks like admin -controllers --orderitem.php -views --orderitem ---tmpl ----orderitem.php ...
0
votes
3answers
27 views

Understanding the Joomla Component File Structure / from URL

I'm new to joomla and have got a problem with a website. I need to modify a view and I've been told it is in http://www.example.com/index.php?option=com_user&view=register&Itemid=68 It ...
2
votes
1answer
33 views

How do you get the File Upload Module Param (Form Field) to work in Joomla 2.5 (backend)

Friends, I'm trying to get the File Upload form field to work on Joomla 2.5(.11). For some reason I can't get the file to upload. As soon as I click "Save", the file upload field says "No file ...
3
votes
1answer
34 views

Joomla - Custom Field doesn't show-up on Edit/Update

I've followed this Tutorial to add a custom field to the article content type and I was successful to make a new one with adding the following code: In File : ...
0
votes
1answer
8 views

Customize no access error message

I am using Joomla 3.x and have restricted access of some articles to certain user groups. When I am not logged in I get a really ugly message "You are not authorized to view this resource". I would ...
0
votes
1answer
35 views

Fatal error: Call to a member function attributes() on a non-object in \installer\adapter\template.php on line 81

When trying to find and zainstalirovat through the "Extensions Manager" I created a template, and when click "Install", then an error: "Fatal error: Call to a member function attributes() on a ...
0
votes
1answer
31 views

How to protect view in Joomla 3.0

In Joomla 3.0 what is the best way to protect a view based on the id. For example I have a url like: /administrator/index.php?option=com_helloworld&view=unitversions&layout=edit&id=158733 ...
0
votes
1answer
7 views

Joomla HTTP 500 error on deploying to remote site

I am a beginner at Joomla and may have probably missed out some key details when trying to deploy...: Basically, I had uploaded the local Joomla project onto a remote host on a subdirectory. Eg: ...
0
votes
0answers
5 views

Div Allignment issue in sobipro component of joomla

http://www.leepsi.com/index.php?option=com_sobipro&task=search&sid=1&Itemid=471#.UZzPH9jy80E Need to Move the "Category" dropdown just above the "Search" Field when i open this link in ...
0
votes
0answers
15 views

Two same size images does not render same

Is there any reason why two images that are same size would not render same. I'm using same module twice in Joomla, with two different images which are same in size and when rendered image in module 1 ...
0
votes
1answer
26 views

When re-sizing my browser or changing resolution body container jumping to right

When re-sizing or changing resolution my content(main container) jumping to right approximately for 10 pixels. Here is my website http://bmsc.tfei.info/ If you change the size to smaller it jumps to ...
0
votes
0answers
10 views

Joomla Website Not Showing Under Main Menu Bar

My site is built on Joomla 2.5.6. I have some customers who are unable to see our site under the main top menu bar. I am unable to replicate the error so have no idea what is wrong. The customers are ...
2
votes
2answers
83 views

PHP MySQL used command not allowed

I'm trying to use the LOAD DATA LOCAL INFILE command in MySQL, but I keep getting an error in PHP/Joomla stating: The used command is not allowed with this MySQL version I've spent quite a while ...
3
votes
2answers
499 views

Want to allow Joomla Super Admin to log into other registered accounts - how to do it?

We've created a highly customized Joomla 1.5 based site and want our super administrator to be able to log into registered user accounts so we can provide better phone support and help them configure ...
0
votes
1answer
14 views

In what file are values received from edit.php?

I'm creating a custom field called provinces where I have built a multi-select field. This field receives a JSON keyless object [3,4,5] from the database which I then apply to the input in getInput() ...
0
votes
1answer
16 views

How to load widgetkit shortcode in modules?

i look for a way to load widgetkit in any module. For example in mod_content. I dont want to use default joomla! {loadposition #} to load another widgetkit module in mod_content. I think that is ...
0
votes
1answer
22 views

Joomla 2.5 save, save & close, save & new, cancel buttons do not work

When I try to create or edit an article, category, or module, I am unable to save or cancel the changes. When I click on the Admin buttons, nothing happens. The URL gets a "#" added to the end of it, ...
1
vote
1answer
7 views

Upgrade button in Jupgrade is a dead button

How to upgrade joomla from 1.5 to 2.5 I've upgraded joomla1.5.25 enabled mootools upgrade installed upgrade But still upgrade button is not working
0
votes
0answers
13 views

Joomla site admin panel redirects to admin panel home

On my joomla site admin panel, whichever option i click the url redirects to /administrator/index.php?dasya=true This happens both on 1.5 and 2.5.

1 2 3 4 5 144