about 3 weeks ago - 8 comments
Hello Friends !!
Yesterday, when I was starting to work on Magento E-commerce. When I was access Magento after installation, I can’t logged in Admin section.
After long time serching and research in Magento, finally I found the solution and currently I am able to login to admin section. Today I explain you about the problem and [...]
about 1 month ago - 4 comments
Hello Friends !!
I have make two sites in Opencart. Opencart is a opensource shopping cart. This is very user friendly and very easy to use.
Today, it is become very famous to make e-commerce sites. Because its very easy to install and very user friendly to use it.
In any Open source, admin is the main part. And if you [...]
about 11 months ago - 5 comments
Hello Friends !!
Today i will show you hiw to use Cookie in PHP.
First of all Cookies are small pieces of text, stored by a user’s web browser, that contain the user’s settings, shopping cart contents, or other data used by websites.
In PHP we can set cookies by inbuilt function setcookie().
setcookie(‘username’, $name);
It is very easy to [...]
about 11 months ago - 1 comment
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 – [...]
about 11 months ago - 3 comments
Hello Friends !!
I found some new thing to take backup your site/blog from server.
I give you script to take backup.
This will take full backup from cPanel to FTP.
The first, cpbackup_cfg.php, shown below, must be edited to insert your site and FTP server login credentials.
<?php
$cpuser = “xxxxxxxxxx”;
$cppass = “xxxxxxxxxx”;
$domain = “yourdomain.com”;
$skin = “x2″;
$ftpuser = “xxxxxxxx”;
$ftppass = [...]
about 1 year ago - 1 comment
Hello Friends !!
If you remember then in my older post on SQL injection, I was explain you basic of SQL injection and basic code to prevent SQL injection.
Today I will explain how to prevent SQL injection using encryption ?
I think you all use MySQL for database purpose.We add one variable named key . This Key [...]