Hello Word :)
Somebody can help me in finding an "online - ordering" component for joomla .
That can contain the following function :
Possibility of creating Form with pages like RS!Form
Uploading Files
Supporting Payment Gateways like PayPal , MasterCard , WebMoney , YandexMoney ,Money Bookers , Google Checkout ... more )
Savin...
Hello,
I need to know please, where to localize the messages that are displayed when registering new user ??
for ex" Joomla User successfully registered."
or "Your Account has been successfully activated. You can now log in using the username and password you chose during the registration."
Can I translate them with JoomFish ?? Where...
I want to create a component that will allow me to install other components, modules, and plugins that i personally use all the time. I will need to be able to change these modules, components, and plugins at anytime but updating the components and etc.. that i use and be able to add more plugins and etc as well. I would like this Com...
I have a Joomla! installation on a remote site and I want to run it locally. I'm running Joomla! locally on a Mac through a standard MAMP installation:
Joomla 1.5.12
PHP 5.2.6
MySQL 5.0.41
Apache 2.0.59
OS X 10.5.8
I've added a configuration file to the local Joomla! directory with all the correct local settings, database name, data...
I am currently trying to implement a jquery slider into a joomla website.
I already implemented NoConflict(); so that it doesn't step into joomla. And it works, BUT for another reason wich I do not understand it enters another jquery file called jsloader.js of a plugin I use for picture gallery display.
I suppose all the module jquery...
I built a rad slider module. Then I built a template that I am going to use as a base for more projects, and I know I will use my slider module most of the time. Is there a way, other than tearing apart the modules and re-coding it all into the template, to "package" the module with a template?
Like the HTML overrides do, but adding the ...
Setup: Joomla website on LAMP stack
I have a MySQL table containing some records, these are queried by a simple SELECT on the Joomla article, as pasted below. This specific Joomla website has Caching turned on in Joomla's Global Configuration. I need to randomize the order in which I display the resultset, each time the page is loade...
Hi
As usual you write in Joomla Development
defined('_JEXEC') or die('Restricted access');
I make a plugin which needs access from Paypal/IPN, so i exclude that in that specific file. BUT I also need to use the Joomla-intern Variables to access the Database, so i tried this:
require("../filewithaccesstoframework.php");
OR even...
I have a site with 10 articles. The layout of the site calls for a new sidebar on the left to be on every article. Easy enough, until I realize in my template file I can only call one specific module. Is there an easy way to have different modules per each article?
Easiest would be to have an if/else and show a different module dependin...
I am trying to show a module, but the article I want to show the module on is not linked to a menu item. Is this possible? Seems like a module can only show when it is a menu item. But I have a ton of articles that are not menu items - so what is easiest way to show the module? Any help would be greatly appreciated.
...
Hi there everyone im new to PHP and Joomla and I have developed a component in Joomla but my code is giving me errors. I have tried to solve the problem but I’am unable to solve it. So can anyone suggest me what is the problem with my code? Thanks in advance.
Here are my two files:
1st view.html.php
defined('_JEXEC') or die('=;)');
j...
How do I change the space between each button of my superfish menu?
I am using the vertical Menu css.
...
I was trying to implement the Ajax method for deploying dependent drop down select boxes inside Joomla. The Problem is that if you call an ajaxRequest to run a php with the query that populates the second drop down depending on the result of the first, this is out of the joomla framework and you can't use anything from the joomla functio...
hi all,
$dbhost = 'localhost';
$dbuser = 'EhpEngineUser';
$dbpass = 'password';
$conn = mysql_pconnect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql');
$dbname = 'joomladb';
mysql_select_db($dbname);
// include 'config.php';
// include 'opendb.php';
above code works fine, i...
Hi,
Can I create any design I want and then use it in a Joomla template or is there certain rules you have to stick to? I ask this as most of the Joomla templates I see pretty much have the same layout e.g. top bar content box, right hand menu and bottom bar.
Thanks
...
Dear All,
I am beginner to Joomla development, I have created a very simple module,
How to create a form of three textfields in it,
and then insert textfields data into database /.
Any one can help ?
...
I know it is possible in Joomla! to set the template temporarily to another template with an URL parameter. Does anyone remember the parameter? And how should the template be indicated?
I expect something like
index.php?template=mytemplate
...
I am interested in developing templates for Joomla? how can i start . can any one tell what exactly joomla done for developers.
...
I am trying to rewrite from
mysite.com/pokerbono/xyz
to
mysite.com/pokerbono.php?id=XYZ
Here is the code I added in the .htaccess:
#### Affiliate Links
RewriteRule ^pokerbono/([a-zA-Z0-9_-]+)$ pokerbono.php?id=$1 [L]
What is wrong with this rule? I tried like 100 variations and always receive a 404.
I tried each and every ...
I am in need of using of session to check for login. I set the session at the frontend
and now i need to check the same session at backend so as to check for successful login.
Frontend
$session =& JFactory::getSession();
$session->set('username', "abc123");
backend
$session =& JFactory::getSession();
echo $session->get('username');
...