Showing posts with label Change. Show all posts
Showing posts with label Change. Show all posts

Thursday, April 25, 2013

Remove LAST_UPDATED2

After changing language, maybe you found an error message/bug displaying 'LAST_UPDATED2 '. To remove this you can follow this instructions :

1. Sign in to your website file manager
2. Entry to the / language / your_language / your_language.ini
3. Add the following line in the file yourlanguage.ini

Page = Page% s of% s
LAST_UPDATED2 = Last updated on% s4. 

Done, that's it. View the changes. May be useful

Change Title of Administrator Backend

To change the title in joomla administrator backend login screen, which looks like "Joomla! Administration Login", the steps are :

1. Find the file /joomla_path/administrator/language/en-GB/en-GB.ini.
2. Then search for the text "Joomla! Administration Login", 
3. Replace the text to the right side of the equal sign to anything you like.


Saturday, April 20, 2013

Change Welcome to Frontpage text


To change the welcome to Frontpage text on the front page :
- Check and edit your menu item under : Parameters - System there is a field called Page Title.


Thursday, April 18, 2013

Change your Joomla Admin Folder Name or Path


If you would like to 'sort of' rename your Joomla administrator directory without having to modify any Joomla code or you don't want to have to use htpasswd to protect that directory, you can achieve it the following way. 
This may help limit issues for joomla security in the future.

Steps #1

1. Create a new directory in your root directory (eg. "myadmin")

2. Create an index.php file in your "myadmin" directory..
$admin_cookie_code="1234567890";
setcookie("JoomlaAdminSession",$admin_cookie_code,0,"/");
header("Location: /administrator/index.php");
?>

3. Add this to .htaccess of your real Joomla administrator directory
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/administrator
RewriteCond %{HTTP_COOKIE} !JoomlaAdminSession=1234567890
RewriteRule .* - [L,F]

To enter your Joomla administration page, you point your browser to "http://yoursite.com/myadmin/" The php code will set a cookie that expires at the end of the session and redirect you to your real administration page. No one will be able to load anything from the administrator directory without having gone through the "myadmin" directory first. 

Needless to say, you would choose another directory name for "myadmin" and change the cookie code "1234567890" to something else. Security through obfuscation is no substitute for the real thing but this might make you feel a little better.

Steps #2


1. define( ‘JPATH_ADMINISTRATOR’, JPATH_ROOT.DS.’administrator’ );
to
define( ‘JPATH_ADMINISTRATOR’, JPATH_ROOT.DS.’myadmin’ );

2. Create a new directory in your root directory (eg. “myadmin”)

3. Create an index.php file in your “myadmin” directory..
<?php
$admin_cookie_code=”999999999″;
setcookie(“JoomlaAdminSession”,$admin_cookie_code,0,”/”);
header(“Location: ../administrator/index.php”);
?>

4. Add this to the beginning of index.php in real administrator folder
#administrator/index.php (modify , **do not replace**)
if ($_COOKIE['JoomlaAdminSession'] != “999999999″)
{
header(“Location: ../index.php”);
}

Changing language in K2 items

K2 is one of components on Joomla.  If you want to change language of its, here are the steps :


1. Get a translation package http://getk2.org/extend/translations
2. Now go to http://extensions.joomla.org/extensions/languages and search for your language pack to install first
3. Install first Joomla language pack
4. After that you can install the language pack for K2.

Change the Default Table Prefix of your Joomla database


Changing the default table prefix will stop the majority of attacks against your database. You can use the DB Admin component in order to do this. Although it is originally designed for Joomla 1.0.x, it works on Joomla 1.5 too.



 Step 1. Install the component and go to Components > DB Admin.

 Step 2. Using the intuitive interface, change the default "jos_" prefix of your Joomla 1.5 tables to a different value.

 Step 3. Modify the configuration.php file in your main Joomla folder. In it locate the following line:
var $dbprefix = 'jos_';
You will have to edit it to correspond to the new table prefix you have set. For example, if you have changed the table prefix to "smth_" the line in the configuration.php file should look like this:
var $dbprefix = 'smth_';
The default table prefix of your Joomla database is now changed. This should block the majority of attacks against your database.


Change the Administrative Username of Your Joomla website


By default your administrative username is admin. The majority of the attackers would expect the username to be admin. Changing it will protect you against many attacks.
To do this, you should:

 Step 1. Log in to the Joomla administrative area and click on the User Manager menu.


 Step 2. Click on your administrative user in order to edit it. You can either check the box next to the user and click the "Edit" button or directly click on the user's full name.


 Step 3. In the next page you should edit the Username field. Change it to something different than "admin" and click on the "Save" button.


Alternatively, you can do this by modifying the database of your Joomla website:

 Step 1. Open the phpMyAdmin tool in your cPanel and load your Joomla database.

 Step 2. Select the jos_users table from the left column and click on the Browse button to edit the rows in it.


 Step 3. Locate the line for the "admin" username and click on the pen icon next to it to edit it.


 Step 4. Change the value of the "username" field to something different than "admin". Using lower and upper case characters as well as numbers is highly recommended.

 Step 5. Once you change your administrative username, press the Go button at the bottom right part of the page.


Now you can login to the administrative area of your Joomla application with the new username.

Sunday, March 17, 2013

Change/Remove Administrator Page Footer


On standard package installation, Joomla displays some description on their footer in administrator page.  In some versions, it says "Joomla is free software ...." and also display the version being used.
You can change/remove in some steps :

1. Go to
   - /administrator/templates/(name of template being used)/login.php 
   - /administrator/templates/(name of template being used)/cpanel.php
   - /administrator/templates/(name of template being used)/index.php
2. Open file and edit/remove the bottom code (on <div> footer </div>) then save it

* do it on each administrator templates



Saturday, March 16, 2013

Change Favicon


You could change Joomla Favicon on following steps :

1. You must have favicon.ico
    - you can create it on : Favicon Generator
    - also, you could make it with component : "Favicon", but just can run on Joomla 2.5
       with this component also you could place it with one-click
2. Place favicon.ico on /templates folder (administrator and site templates)

PS : in some third-party template (ex : JA/JoomlArt), also you must place favicon.ico on main /images folder on root


Change Admin Login Logo (Lock)



If you wish to change padlock image on Joomla Administrator Page, you can change this with some steps :
1. Open Administrator directory
    Joomla 1.5 :
     /administrator/templates/(name of template being used)/images/j_login_lock.jpg    

    Joomla 1.7-2.5     
    /administrator/templates/(name of template being used)/images /j_login_lock.png
2. Open and edit the image with exact size and save on its place