In This Tutorial i want to configure my PHP to support korean encode.
here is a short tutorial how to do that
In order to support other encode we need to reconfigure PHP with mbstring
Login into the server as root
Configure PHP 5.3.0 with mbstring
#cd /root/php-5.3.0
#./configure --enable-mbstring
#make && make install
Modify php.ini
#vi /etc/php.ini
ShareThisI just want to install a MySQL server to support euck korean charset.
Here is a short how to configure it.
Login into your server as root
Compile MySQL
#cd /root/mysql-5.0.88
#./configure --prefix=/usr/local/mysql --with-extra-charsets=complex
#make && make install
Edit my.cnf
#cp /usr/local/mysql/share/mysql/my-small.cnf /usr/local/mysql/my.cnf
#vi /usr/local/mysql/my.cnf
This tutorial will guide you to connect to openvpn server from openvpn client.
So if you are searching about how to installing and configure openvpn server.
Please click this for the HOW-TO
First user need to download OpenVPN client GUI.
OpenVPN client GUI can be downloaded from this URL http://openvpn.se/files/install_packages/openvpn-2.0.9-gui-1.0.3-install.exe
Here is an example how to check IMAP and POP3 from telnet
#telnet localhost 110
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
+OK Hello there.
USER info@testing.com
+OK Password required.
PASS changeme
+OK logged in.
quit
+OK Bye-bye.
Connection closed by foreign host.
What Is FXP?
FXP stands for File eXchange Protocol. It lets you copy files from one FTP-server to another using an FXP-client. Normally you transfer files using the FTP protocol between your machine and a FTP-server, and the maximum transfer speed depends on the speed of your Internet connection (e.g. 56k, cable or T1). When transferring files between two remote servers using an FXP client, the maximum transfer speed does not depend on your connection but only on the connection between the two servers, which is usually much faster than your own connection. Because it is a direct connection you will not be able to see the progress or the transfer speed of the files.
Fatal error Maximum execution time of 300 seconds exceeded in phpmyadmin
There are 2 options available to fixed this issue.
1. edit php.ini and raise max_execution_time limit to higher. don't forget to restart your webserver
2. from your error messages it seems phpmyadmin is not configure properly
edit your config.inc.php under phpmyadmin directory like below
// Add this line below into your config.inc.php
$cfg[’ExecTimeLimit’] = 3600;
Change 3600 to suit your need.
Hope this can help
I assume you already have IIS7 installed on Windows 2008 and is up and running properly.
In this example, We already have 1 website configured on IIS7 Windows 2008
First Login into Windows 2008 server via RDC
Click Start >> Administrative Tools >> Internet Information Services (IIS) Manager

What is Shared SSL ?
A "secure server" or "shared SSL" is an invention of your web hosting company. It is a way to use an SSL certificate without actually buying one.
Preparing Anything:
Example :
Example.com already have SSL installed on IIS6 and this domain SSL certificate will configure to shared the SSL into other domians.
How To Configure Windows Firewall Passive Port Range 10000 - 11000 TCP
Below is a simple batch script to open passive port range between 10000 to 11000 TCP.
You can change the port if needed, I just take this as example.
First, login into your windows server box with RDP
Click Start >> Run >> Command
You will see a command prompt box,
Edit a file and name it passive.bat
Recent comments
1 week 13 hours ago
4 weeks 18 hours ago
4 weeks 6 days ago
5 weeks 4 hours ago
5 weeks 1 day ago
5 weeks 1 day ago
5 weeks 2 days ago
5 weeks 2 days ago
5 weeks 5 days ago
6 weeks 1 day ago