URL Rewriting in Opencart

Hello Friends !! Today I am going to introduce that how to enable URL rewriting in Opencart.
I have completed my two projects in opencart and I already faced the problem that how to enable URL rewriting in Opencart.
So today I want to share with all of you guys that how to use URL rewriting in Opencart. Continue reading »
URL Rewriting with PHP and IIS 7

Hello friends !! Few days ago, I faced a URL rewriting problem on windows server. After checking the server configuration, I found that there is an II7 installed. After long research about this, I found that II7 is not support .HTACCESS. If youwant to male your site SEO URL friendly, then you have to use web.config file for URL rewriting instead of .HTACCESS. Now the question is how to make web.config file from .HTACCESS ?
IIS 7 uses a file called Web.config to hold settings for integration with applications. The Web.config file contains information that control module loading, security configuration, session state configuration, and application language and compilation settings. Web.config files can also contain application-specific items such as database connection strings.
Today in this post, I will explain you how to make it ? This post contains most common uses of the .htaccess file by PHP applications, and shows how to use the Web.config file for these same functions in IIS.
Now First Here are the sample files of .HTACCESS and Web.config.
Continue reading »
CGI Tutorial

CGI stands for Common Gateway Interface, which is the standard for creating dynamic files or web pages. It can be seen in use on thousands of web pages – website guest books which allow a visitor to enter a message which is displayed the next time anyone accesses the guest page, or search engine pages where one types in a query and the search engine responds by displaying the results pages.
CGI scripting actually refers to writing a program that will control how a website’s content can be displayed to visitors.
Redirect to https (SSL) in php
Hello Friends !!
Today I found some new things. This post is show you how to redirect to https(SSL) in PHP.
First, What is SSL ? Let me Explained :
SSL meand Secure Socket Layer. It is developed by Netscape to transmit private data via Internet.
SSL uses a cryptographic system that uses two keys to encrypt data – a public key known to everyone and a private or secret key known only to the recipient of the message. Both Netscape Navigator and Internet Explorer support SSL, and many Web sites use the protocol to obtain confidential user information, such as credit card numbers. By convention, URLs that require an SSL connection start with https: instead of http:
Most of e-commerce sites uses payment gateway for online payment.And those sites use SSL connection to transfer data to and from the payment gateway.
Most of the sites use http protocol. But in above case wehave to redirect browser to https.
If you want to see example, write “http://www.gmail.com” in browser, it automatically redirects to https.It means site transfer to SSL protocol.
First of all, you should know that SSL must be installed in the server. To redirect the browser to “https” , we must know that the site is using SSL or not at the moment. And for this, there is a server variable in PHP called “HTTPS”. $_SERVER['HTTPS'] returns “on” values when the site is using SSL connection.
Continue reading »
Block Proxy Servers using .htaccess
Hello Friends !!
We all know about spamming.
In my last post we can block IP address using .HTACCESS. But suppose proxy server used for spamming then what will you do ? In using proxy server, every time IP address changed.
Generally hackers are also use proxy servers to hack the site.
Don’t worry about this. I found some code of .HTACCESS which blocks proxy servers to access your site.
How to Block Proxy Servers
This code help you to block proxy servers to access your site.
Block IP addresses Using .HTACCESS
Hello Friends !!
In my previous post, i was write how to block IP address using PHP script ?
Today i will write that how to block IP address using .HTACCESS ?
There are several ways to block a specific IP range.
The first utilizes a CIDR number to block the specified range (via htaccess):
<Limit GET POST PUT>
order allow,deny
allow from all
deny from 214.53.25.64/26
</Limit>




