Ads

Thursday, July 16, 2015

How to Change Your Password without entering old password?

Hello Friends!
Aj main ap ko btaon ga k Ap apne Computer ka password kesay change kr skte hain wo b old password k bgair.
Just follow these steps to change your password.
Step 1 : Open Command Prompet by going to Start >> Run and Type cmd



Step 2 :
Use this Command
$ net user [username] [new_password]

E.G : net user Administrator my_new_password




Type the above command and press ENTER Key.
 Congratulations! You have successfuly changed your Password. 









Wednesday, July 15, 2015

Start your own URL Shortening Service

Hello Friends!
Today I'm going to tell you about URL Shortening Service.
If You want to Start Your Own URL Shortening Service, Download the following Scripts
Written in PHP,MySQL.

1 : ALW URL Shortener
 ALW URL Shortener is an open source php script which allows you to shorten your long URL into a small url with only one click.
You can make a custom url while shortening your URL.
AlW URL Shortener is free for use.It refers you to your long url fasly because it does not show ads on the refer page.
Download Link :

DOWNLOAD

 

Password is : sky

How to install Roundcube on VPS?

Hello friends!
To install roundcube on VPS, Please follow these steps...
Step 1 : Download Roundcube

$ wget http://sourceforge.net/projects/roundcubemail/files/roundcubemail/1.0.3/roundcubemail-1.0.3.tar.gz

Step 2 Extract Roundcbe Archive

$ tar -zxvf roundcubemail-1.0.3.tar.gz

Step 3 Rename the Folder Name

$ mv roundcubemail-1.0.3.tar.gz mail

Step 4 Now move mail directory to you public_html
/var/www/html/ is default directory in Centos

$ mv mail /var/www/html/

Step 5
Open Your browser and goto your IP address and Install Roundcube.

How to install Xampp on Centos?

Hello Friends!
In this post, I'm going to describe How to Install XAMPP on Centos?
Follow these steps...
Step 1 :
Download Xampp for Linux

$ wget http://downloads.sourceforge.net/project/xampp/XAMPP%20Linux/1.8.1/xampp-linux-1.8.1.tar.gz -O xampp-linux-1.8.1.tar.gz

Step 2 :
Make Directory named opt.

$ mkdir /opt

Step 3 :
Extract the archive.

$ tar -zxvf xampp-linux-1.8.1.tar.gz -C /opt/

Start Xampp Services

$ /opt/lampp/lampp start

Note : Please Stop Apache,MySQL and FTP Services before starting Xampp!

Tuesday, July 14, 2015

How to Install and configure Vsftpd on Centos

Hello friends!
In this post, I'm going to describe How to Install and Configure vsftpd on centos?.
Vsftpd is a FTP Server which allows you to manage your server files remotely.
Please Use the following commands to install vsftpd on centos.
Step 1 :
 

$ yum -y install vsftpd nano

Step 2 :
Edit the vsftpd configuration file

$ nano /etc/vsftpd/vsftpd.conf

Now edit line as

anonymous=NO
ascii_upload_enable=YES
ascii_download_enable=YES
chroot_local_user=YES
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd/chroot_list
ls_recurse_enable=YES
#Now add this line
local_root=/var/www/html

Step 3 :

$ echo "admin" >> /etc/vsftpd/chroot_list

Replace admin with your username.
Step 4 :

$ service vsftpd start
$ chkconfig vsftpd on

Congratulations! VSFTPS Server has been successfuly installed on your Centos.