For Joomla, we should chmod all folders to 755 and files to 644. (Of course, there are some folders we need to chmod 777…).

With FileZilla, right click on the Joomla folder, choose File Permissions…

  • “Recurse into subdirectories”  CHMOD for all subfolders.
  • “Apply to all files and directories” CHMOD files + Folders.
  • “Apply to files only” CHMOD files only.
  • “Apply to directories only”  CHMOD for folders only.

If your host is support, you can create a chmod.php file with content:

<?php

system(’find . -type d -exec chmod 755 {} \; 2>&1′);
system(’find . -type f -exec chmod 644 {} \; 2>&1′);

echo(”\n\nComplete!”);

?>

Then upload it to the folder you want to chmod and view it (yoursite/chmod.php), it will chmod  all subfolders to 755 and files to 644.

Tags: ,

I love Firefox because of its add ons. The following add ons are my recommended add ons that you should try. They are cool.

1 – Hide Menubar

Supports to hide your Mainmenu Toolbar automatically,
you can press the ALT key to show it temporarily.

https://addons.mozilla.org/en-US/firefox/addon/4762

2 – Adblock Plus

Ever been annoyed by all those ads and banners on the internet that often take longer to download than everything else on the page? Install Adblock Plus now and get rid of them.

https://addons.mozilla.org/en-US/firefox/addon/1865

3 – Speed Dial

Direct access to your most visited websites

https://addons.mozilla.org/en-US/firefox/addon/4810

4 – Xmarks

Xmarks is the #1 bookmarking add-on. Install it on all your computers to keep your bookmarks and (optionally) passwords backed up and synchronized. Xmarks also helps you uncover the best of the web based on what millions of people are …

https://addons.mozilla.org/en-US/firefox/addon/2410

5 – Firebug     (This add on is very useful for Webmaster, web coder…)

Firebug integrates with Firefox to put a wealth of development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page…

Firebug 1.4b1 requires Firefox 3.5b4 or higher.

https://addons.mozilla.org/en-US/firefox/addon/1843

Tags: ,

I tried to verify by uploading a html file for Google Webmaster Tool, but there was no luck! So I used the meta tag method and Google meta verification and I was successfully.

It is very simple. You just log in to Administrator zone and Edit html for your current theme. That’s it.

Note:
Add above in your template name/index.php

Like this

Tags: ,

For ex. we have

/www/configuration.php

(Or /www/joomla etc/configuration.php)

Now we would like move config content to /configruation.php (out of WWW directory).

1- Create a NEW.cf in / You will have /NEW.cf

2- Copy your  configuration content in /www/configuration.php to /NEW.cf

3- Change configuration content in /www/configuration.php to

<?php
require( dirname( __FILE__ ) . ‘/../NEW.cf’ );
?>

For more security, you may chmode the configuration in /www/configuration.php to 644

Good luck!

Tags: ,

Cuong Dang © 2009 | Theme | Get in touch: info at cuongdang.info | Content on this site is licensed under a Creative Commons Attribution 3.0