If your site is hosted on Shared Server and you want to use Zend library on your project. For Dedicated server, you have full root access and can have remote or full putty access of your server, you can install/uninstall any library as well as software in the server. The same will be done…
Hot linking can also be called as “leeching” or “bandwidth theft” is a term referring to when a webpage of one website is direct linking to the images/videos or other multimedia files on the web host of another website (usually without permission, thus can be called as stealing bandwidth). E.g. Like an <img alt=””…
Most useful 5 htaccess tricks every webmaster should know 1) Redirect your website visitors while you update or test your website order deny,allow deny from all allow from 117.117.117.117 ErrorDocument 403 /showpage.html <Files showpage.html> allow from all </Files> Replace 117.117.117.117 with your IP address. Also replace showpage.html with the name of the page you want…
If you are using Codeigniter (PHP Framework) you are noticed that by default index.php will be included with your URL. But you can easily remove index.php from your URL so that your URL should be like : http://yourdomainname.com/controller/action/var1/var2 To do this just follows the following steps: 1. Open config.php from system/application/config directory…
Set file permissions with .htaccess, this is a great method for ensuring the CHMOD settings for various file types. Apply the following rules in the root .htaccess file to affect all specified file types, or place in a specific directory to affect only those files (add/update file types according to your needs) Require SSL…
Block access to files using htaccess 1. Block access to .htaccess file Add the following code block to your htaccess file to add an extra layer of security.Any attempts to access the htaccess file will result in a 403 error message.Your first layer of security to protect htaccess files involves permissions via CHMOD to 644.…