0
votes
2answers
25 views

joomla component: controller not returning json [SOLVED]

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 ...
0
votes
1answer
17 views

Joomla login component with JFactory::getUser

I have component that have his own table with users and when user login, JFactory::getUser didn't work. How Joomla can understand that user is login? in my model it is ...
0
votes
1answer
24 views

JMail usage for cutsom component programming

My code works when the format is html. <pre> public function partOrder() { $input=JFactory::getApplication()->input; $mailer =JFactory::getMailer(); $config ...
0
votes
1answer
22 views

Akeeba subscription additional Payment Gateway

I would like to integrate SecurePay payment gateway in Akeeba subscription component in Joomla 2.5 I am familiar with ceating component and modules in Joomla 1.5 Please give some guidance to ...
0
votes
0answers
16 views

Joomla 3 Widgetkit not showing in component menu

I have installed and added a lot of data in my Joomla 3 Yoo Widgetkit, but I found out that it should be a widgetkit menu item in components menu, but it is not. I googled and found this solution: ...
0
votes
0answers
20 views

Manage 2 tables with 2 views in the same Joomla backend component

I'm new to Joomla! component developement, and just can't figure out how to do this.. Details: In my component I should be able to manage two DB tables: Question(id_question, type, text) and each ...
1
vote
1answer
37 views

Output of two components on one page in joomla 2.5,

I want to show the output of two components on one page in joomla 2.5, anyone knows how to do it plz tell me
2
votes
1answer
66 views

Adding forms to joomla's front end component view

I'm developing a component using joomla 3.0. I'm trying to add forms in my component. I saw that joomla has the JHTML class for adding forms in backend. what is the recommendation for creating forms ...
-4
votes
0answers
10 views

Which one is best to fetch database details from databse module or compopnent in joomla

I want to Show A-Z articles heading from databse. if am clicking A need to show only A started articles. How to do that and then component or module is best to do this?
0
votes
0answers
24 views

How to: Joomla Component on sub-domain

Is it possible to have a Joomla component map to a subdomain? Such as forum or blog. If yes how? blog.joomlasite.com ---> map to component page Is there a plugin for it or is it possible via ...
1
vote
1answer
54 views

Create custom joomla captcha

I've been assigned to create a captcha verification for a custom component in joomla, but I'm stuck at how to do it properly. I'm aware of the fact that there are many captcha plugins like recaptcha ...
0
votes
2answers
53 views

View path inside default.php in joomla component

I'm building a component view in Joomla and I'm using a lot of JS in the file inside the component myview/tmpl/default.php. Where is the best folder to store a separate JS file in a component and how ...
0
votes
1answer
23 views

joomla component blank pages

How to debug blank pages in joomla 2.5 during development. I try to access my custom components on view and sub controller like index.php?option=com_mycomponent&view=item&id=2571 ...
0
votes
0answers
19 views

AceSearch Component Error

I have a problem with a component named "AceSearch" from Joomla. So, I instaled the component in my CMS version 2.5 following the tutorials. But, in every search always returns an MySQL error: You ...
0
votes
1answer
33 views

Create a form by article or component in Joomla! 3

I'm newbie in Joomla. I know that we can create a form like "Create Article" in joomla! . However, we can also create a form by creating a component with MVC method. What is the different ? Can ...
0
votes
2answers
52 views

Joomla 2.5 component controller loading

I've been trying to learn how to build a Joomla component. I've been using http://joomlaprogrammingbook.com/ book which is great. I can now do plugins and modules without too much of a problem. ...
0
votes
1answer
126 views

Joomla 3 MVC platform 12.1 custom component template override

I'm working with Joomla 3's MVC 12.1 platform and running into some issues with getting template overrides to work. My Component has 3 controllers: stores, coupons, sales. For each of these ...
0
votes
0answers
34 views

why my joomla controllers method is not getting executed

I have an ajax method which sends data to one of my controller but the method inside of my controller is not getting fired. Everytime the first method is getting executed on call. The controller looks ...
1
vote
1answer
35 views

joomla layout handling in custom component

where do I set the desired layout in the following function if is getting called like $input = JFactory::getApplication()->input; $input->set('view', $input->getCmd('view', 'Myview')); and ...
0
votes
2answers
28 views

jomla custom component css issue

Building a custom joomla Component, in my Admin interface a css class with value m (<div class="m"> </div>)is getting every time called. How could ignore to not get included. I'm searching ...
0
votes
0answers
70 views

jquery ajax form submission joomla component

I am developing a component for my bachelor's exam and I have some trouble with a form submission. After completing the form users must be presented with a googlemap where they must point their house ...
0
votes
1answer
41 views

Cannot view joomla component

I've created a joomla component which consists of a html form, and when I try and browse to it: index.php?option=com_helloworld I get an error 404, component cannot be found. I'm following this ...
0
votes
1answer
28 views

Where to find the variables used in Iproperty component for Joomla? [closed]

Apologies in advance for my dumbness! I use the Iproperty real estate component for Joomla 1.5. When entering details for a property there is a dropdown for number of bedrooms and number of bathrooms. ...
0
votes
1answer
34 views

joomla component save creates a new instance instead of update

I am working on a Joomla 3.0 component built by notwebdesign.com. In administrator, each time I try to save the data it creates a new instance of data instead of updating the data already loaded in ...
0
votes
0answers
47 views

Joomla dynamic select implementation

I am creating site where select field is used often. Most of the time data is retrieved from database. I have found several solutions like How do I add dynamic dropdown in Joomla JForm XML file but ...
0
votes
1answer
49 views

Joomla 2.5 component

Is it possible to make a 2.5 component without using TableHelloWorld class and all that field type stuff like from here. Or is it compulsory? Thanks. ...
0
votes
3answers
48 views

My Joomla component not displaying anything

I have build my own component. I know very well about these stuff but all of sudden I wonder that the joomla request to my custom component is not displaying anything. Its displaying blank page. See ...
0
votes
0answers
53 views

SEF article link when page is using a custom component without output

My aim is build a page without component output. I built a simple component which does nothing.And I created a menu item to this component. My page consists of some core modules like ...
0
votes
1answer
88 views

Joomla component “attachments” allow html in input

this question might be a bit special. I am using this Joomla 2.5 extensions to give authors the abilty to add Attachments to articles: Joomla Attachments The extension renders an input field called ...
0
votes
0answers
51 views

Joomla Component Only Display Component html

I have searched around alot to find anyone with this same issue and I couldn't, they had different issues. The problem is that on one specific view in the component I have made it returns only the ...
0
votes
0answers
31 views

joomla search components and modules

Already searched Joomla forums, Joomla extensions, and stackoverflow. But, can´t find the plugin. Not so long ago (could be a year) I installed a plugin (I am sure it was 2.5 Joomla version) that ...
-8
votes
1answer
36 views

i got this error while installing jupgrade in joomla1.6 [closed]

I got this error while installing the jupgrade in the joomla 1.6 **JInstaller: :Install: Cannot find XML setup file**
1
vote
0answers
119 views

Call to undefined method JXMLElement::getElementByPath()

I tried to install ip filter module in joomla 2.5 .while installing i got the fatal error as Call to undefined method JXMLElement::getElementByPath() in com_ipfilter\install\install.php on line 9 i ...
2
votes
1answer
153 views

How to put a Joomla 2.5 backend view in a modal window

i like to open a components backend view in a modal window. All my attempts lead me to a modal window displaying the whole backend in an iframe in the modal window. I used this link to open the ...
0
votes
1answer
100 views

Include Joomla Component outside Joomla 1.5 (Joomla FB Chat)

Is there anyone know how to include Joomla Component to be worked outside Joomla? I have a project for my undergraduate program to make a website but i were not allowed to used CMS like joomla or ...
0
votes
2answers
423 views

passing get variables in joomla component

I'm trying to build a simple joomla component what would show custom google search results based on it's API. How would I pass a get variable to a joomla component? Lets say I have already the basics ...
-2
votes
3answers
92 views

joomla component to module

I want to convert component to module apart from using plugin is ther any process to handle it. (or) whether we should code somethimg to make my mvc component to module . (or) is there any ...
0
votes
0answers
459 views

Dj Image Slider Extension in Joomla 2.5.2

In Joomla 2.5.2, i installed Dj Image slider - a component and module which will be very useful to my website. I have created a category, but when I try to access slides and control panel, I'm not ...
0
votes
0answers
272 views

Joomla 3.0: Component doesn't save, delete or edit correctly

I am very new to Joomla (3.0) extension development so I am still learning. I am making my own component which has the purpose to show images with some additional information connected to categories. ...
0
votes
1answer
176 views

Joomla Component 2.5 data from model to view QUERY trouble

Dear People of stackoverflow, A probably simple qeustion for you guys. I am developing a Joomla Component 2.5 and at the moment i am stuck on retreiving data from my model. I'm using the following ...
0
votes
2answers
227 views

Joomla Component data from model to view

I am creating a component in Joomla for the first time, now i am having a hard time calling data from my model in to my view. I did this as follows: //In my model class InternetModelDefault ...
0
votes
1answer
200 views

Joomla json output comoponent 2.5 from controller to view

I have a qeustion for you, Ive got a JSON Api which give me some info, some of it isn't usefull. With the following line of code i can call all info and write into my view: $url = ...
1
vote
1answer
166 views

Joomla! 2.5 Component menu type parameter in the generated URL

I am modifing K2 itemslist->category view in order to supply also a tag and so shown articles will be the one of specified category and view. My question is: How to add a menu parameter to the menu ...
1
vote
1answer
497 views

Error loading component: component, 1 in joomla

I am getting this errors on my 2 components com_guru and com_easydiscuss . Error loading component: com_guru, 1 Error loading component: com_easydiscuss, 1 There is also a reference to these two ...
0
votes
1answer
86 views

insert with subquery from install.sql on joomla

I want to install my component with changes in database. But my tables contain some correlations, and I should insert some of data into my tables with sub-queries, but i got error in my Joomla: An ...
2
votes
1answer
127 views

Joomla 2.5 advanced parameters

I am joomla 2.5 template developer and I want to use some custom template parameters for my theme. What I need is custom parameters fields like on this picture. I can't figure out how this is done. Is ...
0
votes
1answer
147 views

Abstract Management component for Joomla

I'm looking for an abstract management component for Joomla 2.5. Google guides me to this page, which Joomla has deleted it. Do you know any free component? (or I have to write myself...)
1
vote
3answers
466 views

Joomla: Override Category Blog output multiple times?

Yes. I want to override output of Category Blog component to 2 different display styles. For first style, i copied and edited blog_item.php & blog.php in [mytemplate]/html folder. Then i choose ...
0
votes
0answers
37 views

router file issue in joomla

i have created a component and i want to create router file. but problem is that data not getting in $query variable of CompNameBuildRoute . please check below is my custom link : ...
0
votes
1answer
271 views

Modify joomla articles

I'm using joomla 2.5.8 for my website. No I want to style the articles of my Blog. Under the article div I want to add another div with an image to have a special effect. Is this possible? This is ...

1 2 3 4