Article title appears two times on pages in Joomla
If you have the problem of Title appearing twice in joomla 1.5 pages then you need to follow the following steps
1. Go to the menu manager
2. Find the Menu Item for the page
3. Select in Parameters (System) > Show Page Title > No.
OR
Look inside [...] Continue Reading…
Can I block or delete a superadministrator in Joomla 1.5?
Whenever try to delete a SuperAdministrator I get the following error
You cannot delete a Super Administrator.
The soultion to this is
First, demote to superadministrator to a lower category, such as registered. Then delete or block.
How do I recover my admin password in Joomla?
Joomla 1.0 or 1.5
If you know the email address that was used, the simplest thing is to do is to use the “lost password” Front-end function if you have made it available.
If not, you will need access to the MySQL database.
You have two choices, [...] Continue Reading…
Changing Welcome to Frontpage component heading in Joomla 1.5
1. Login to Admin of Joomla
2. Menu > Menu Manager
3. Selct the Menu
4. Look for the system parameters on the right, either disable or change the text.
load a module in the content area in weblogic template for joomla
To load a module in the content area in weblogic template, you need to follow the following steps
1. Add a module to the template say ‘user9′ to the template. (to see how to add a module click here)
2. Extensions -> Template Manager -> [...] Continue Reading…
Breadcrumbs not showing for Joomla weblogic template
Steps
1. Login to Admin ->module manager -> click “new”
2. Select “breadcrumbs” and then the next page will give you the parameters for the module: location, menu locations.
3. check “no” for title to show
4. Position : breadcrub
Enable it and you are done
JFTP::login: Unable to login
While installing a component I encountered the following error
JFTP::login: Unable to login
JFTP::store: Unable to use passive mode
Warning! Failed to move file.
After some research i realized that I had changed the FTP login details on my hosing server
So I logged in to Joomla [...] Continue Reading…
wget command for windows
You can copy the exe file from http://users.ugent.be/~bpuype/wget/#download
and paste the file into WINDOWS\system32 folder of your PC.
Now go to command prompt (Acessories > Command Prompt) and use wget command to download files as you do in linux
eg. wget http://joomlacode.org/gf/download/frsrelease/6828/22538/Joomla_1.0.15-Stable-Full_Package.zip
This will download Joomla 1.0.15 version [...] Continue Reading…
php code to save files on user machine
I was trying to save the ‘.xls’, ‘.doc’, ‘.wmv’ on user machine, which works correctly on Firefox(developer friendly) but not on Microsoft’s IE(Microsoft friendly);
after searching on the net, i found this code which works on both the browser.
here is the code:
————————-
<?php
// downloading a [...] Continue Reading…
PHP Script to load a PDF
To get PHP to load a PDF (for example) from file, use the following code.
<?php
$filename = $_SERVER['DOCUMENT_ROOT'] . “/path/to/file/my_file.pdf”;
header(”Cache-Control: public”);
header(”Content-Description: File Transfer”);
header(’Content-disposition: attachment; filename=’.basename($filename));
header(”Content-Type: application/pdf”);
header(”Content-Transfer-Encoding: binary”);
header(’Content-Length: ‘. filesize($filename));
readfile($filename);
?>
If you enjoyed this post and found it useful, please write your comments. You comments would encourage us to write more. Also make sure you subscribe to our RSS feed!
We Provide Custom PHP Programming for Joomla , Wordpress, OScommerce, Creloaded, Xcart and any other opensource solution you can think of at www.technoIntellects.com.
Get our Joomla Hosting Packages at the affordable price with unlimited services

