joomla

Joomla and XMLRPC: 'Incorrect parameters passed to method...'

Hi I've been trying to write a simple echo service for Joomla 1.5, but with no success. My code is this: echo.php: <?php defined( '_JEXEC' ) or die( 'Restricted access' ); jimport('joomla.plugin.plugin'); class plgXMLRPCEcho extends JPlugin{ function plgXMLRPCEcho(&$subject, $config){ parent::__construct($subject, $con...

Jumi (Joomla plugin) breaking PHP global keyword

When I include a PHP script via Jumi, it seems to break the global keyword. Example: <?php $a = 5; function foo() { global $a; if (isset($a)) echo $a; else echo '$a is not set'; } foo(); ?> When I run this PHP script (named test.php) by itself, it correctly prints 5. When I...

Customizing joomla search result page layout

The joomla search results appear on the home page. I want it to show up on a new page. According to some online posts I had to modify the mod_search.php to set the item id to a non existing item so i set it to 0, but the problem is that the changes are not being reflected in my search module at all. I also tried putting a hidden field ca...

SOlving the problem of unique key in joomla

I am novice to joomla. I am using Joomla 1.5. I have declared a field in database table as unique. Lets suppose , I have declared "username" as unique . I created a component named "com_user" in the administrator/components section. Now, when I add a user "xyz123", for the first time, its ok. But, during next entry, when I enter the same...

I would like to convert Joomla CMS to ASP.net as there is no CMS like Joomla in .net. Would that be a good idea?

Hello friends I have this idea boggling my head since a long time. As a developer, I get a lot from the community and feel like giving back something to the community. And after knowing and working on Joomla i found Joomla CMS as the most flexible, easy and user friendly cms. As a developer, I like most of the features of it. ...

Joomla Database Problem

Hi All, I am a beginner to Joomla, I have installed Joomla 1.5 in my server with Fantastico including sample data, also i have installed joomla in my local server. I Don't know how to upload this project from local to real server, when i completed my project , i have exported my database and import this Database in to real server after ...

Restricted Access in Joomla file

Hi, i am using a Form where i am having a textbox which on submit i am retriving the value of the text box and sending it to a file which gets the value and using it to fetch the records.. in my javascript i gave like <script language="javascript" type="text/javascript"> function check() { var title=document.g...

How to use jQuery ajax in Joomla module

I'm creating a module where in my main PHP file I've added a reference to a Javascript file. In that Javascript file, I do a jQuery call on dom ready that does an Ajax post to grab the initial content for a div. The URL that it posts to is another PHP file (gateway.php) that is part of my module. (This gateway.php does a call to a remote...

How to store data into multiple tables in Joomla?

Hi Stackoverflow, I am writing a component and I have a scenerio of storing data into multiple tables with One-To-Many relationship. Master table is Student and Child table is Student_Subjects. One student can select multiple subjects. I want to store the data in Student_subject table with student. Data is submitted from one form whe...

How do i implement Paypal in the Chronoform Redirect

I have a page with joomla and Chronoforms on it. How do i use the redirect to send it to my paypal page? An example or a screen shot will help me i don't know why i don't get it.. ...

How Long: Converting HTML to Jooma pages

Hello Everyone, I would really appreciate your help with finding out how long it takes a 1-3 year experenced programmer to convert a few HTML pages into joomla 1.5 dynamic pages. I know that some of it depends on how complex the pages are but i'm talking about average pages. That's my first question, my other question is how long will i...

Changing the pointer in Joomla to go to other than index.php

We have a Joomla installation sitting in the same exact root folder as the client's old system, which is html-based. As it happens, the server will jump on "index.php" before it will look at "index.html" so it works out well as far as ease of deployment. The problem is that we've had to take it down to make some tweaks, and the way I d...

How to make a specific web page inaccessible, except to those who get there by a redirect.

I have a webpage on a Joomla based website that I am trying to make inaccessible to anyone but those who have been redirected there through a redirect page. Basically, they would purchase something on a form on my page which is integrated with Paypal, and when Paypal payment is complete I have them redirected to this specific page. I...

Is good knowledge of PHP needed to make an installable template for CMS's like Wordpress, Joomla, or Drupal?

Is good knowledge of PHP needed to make an installable template for CMS like Wordpress, Joomla, Drupal? Or is good knowledge of XHTML and CSS enough? ...

How to write ½ in php

Hi everyone, Quick question, how can I make this valid : if($this->datos->bathrooms == "1½"){$select1 = JText::_( 'selected="selected"' );} The ½ doesn't seem to be recognized. I tried to write it as &#189; but then it looks for &#189; literally, and not the ½ sign. Any ideas? ...

Joomla! lightbox and Joomla! gallery

Hello, I'm looking for Joomla! image gallery that is simple to set up and has good customer support i.e. adding requested feature and fixing integration issue. No matter free or commercial, the only requirements are good looking user interface and very good support. I want to be able to place single image with lightbox effect or create...

Hosting two sites within single Joomla cms

Is it possible to host multiple websites that all have one single/common CMS (Joomla)? Thanks. ...

What is the code for adding the Print icon and functionality to another component in Joomla?

So basically, the print functionality does not work by default in Joomla but I've fixed that with some code modifications. However, this functionality is only available in the articles. I have a blog component and I need to make the print button available in the blog entries too Does anyone knows the code for this? Or knows the files I ...

Joomla mailto: sub issue urgent

Hi I am using this code for an image for mailto: but when subject line is entered it is showing a big unable to parse javascript or something in joomla. mailto:[email protected]?subject=hello Thanks ...

Posting Documentation onto a Joomla Site

I would like to create some documentation and post it onto my Joomla website. This documentation would be something along the lines of the MSDN documentation: i.e. each page would follow a basic template. Intuitively I feel I have two ways of achieving this: 1) Creating each page of documentation as a separate article, and then link...