| wei 的个人资料e-Knowledge日志列表网络 | 帮助 |
|
e-KnowledgeIT, programming, mysql, Visual Basic 2005, Visual Web Developer 2005 8月3日 How to build a hosting server?First we need to download:
appserv - http://www.appservnetwork.com/ //Support: MySQL, PHP, and phpMyAdmin.
Installation:
It is easy to use so we just simply press Next button and finishing the installation. Note: no need to change anything.
1. Now we can open IE and try this address http://localhost/ or http://127.0.0.1/.
2. Open this address http://localhost/phpmyadmin/ and you will see some warning (red words) on the bottom. Don't worry it just need to do some configuration.
3. First click on the Privileges and edit the mysql user to whatever we want. Default: username=root and password=(blank). Go to step 5
4. Go back to the phpmyadmin homepage, so now the warning should decrease 1 line.
5. Go to C:\appserv\www\phpmyadmin\, open config.default this file by notepad or 3rd party software like UltraEdit.
Search for:
$cfg['Servers'][$i]['user'] = 'root'; //change to the username we set.
$cfg['Servers'][$i]['password'] = ''; //change to the password we set. 6. Go to C:\WINDOWS\ and open php.ini with notepad search for ;extension=php_mbstring.dll and replace it with extension=php_mbstring.dll.
Now we can start working on the server.
Note: The phpmyadmin we can move it to other place or remove it. We can using other 3rd party software like SQLyod, MySQL Query Browser, and etc to do Add, Insert, Update, Delete on the database.
Enjoy =) |
|
|||
|
|