放牧代码和思想
专注自然语言处理、机器学习算法
    This thing called love. Know I would've. Thrown it all away. Wouldn't hesitate.

支持php5.2的最后一版xampp——xampp-1.7.1

而1.7.2的版本就不支持php5.2了:

###### Apache Friends XAMPP (Basis Package) version 1.7.2 ######
  
  + Apache 2.2.12 (IPV6 enabled)
  + MySQL 5.1.37 (Community Server) with PBXT engine 1.0.08-rc
  + PHP 5.3.0 + PEAR (PEAR, Mail_Mime, MDB2, Zend)
  + Perl 5.10.0 (Bundle::Apache2, Bundle::Apache::ASP, Bundle::Email, Bundle::DBD::mysql, DBD::SQlite)
  + XAMPP Control Version 2.5.8 (ApacheFriends Edition)
  + XAMPP CLI Bundle 1.6
  + XAMPP Port Check 1.4
  + XAMPP Security 1.1
  + SQLite 2.8.17
  + SQLite 3.6.16
  + OpenSSL 0.9.8k
  + phpMyAdmin 3.2.0.1
  + ADOdb v5.09a
  + FPDF v1.6
  + Zend Framework 1.9 Minimal Package (via PEAR)
  + Mercury Mail Transport System v4.62
  + msmtp 1.4.17 (a sendmail compatible SMTP client)
  + FileZilla FTP Server 0.9.32
  + Webalizer 2.21-02 (with GeoIP lite)
  + Xdebug 2.0.5 for PHP
  + eAccelerator 0.9.6-rc1 for PHP
  + Ming 0.4.2 for PHP
  + PDF with pdflib lite v7.0.4p4 for PHP
  
---------------------------------------------------------------
  
* System Requirements:
  
  + 128 MB RAM
  + 256 MB free fixed disk
  + Windows 2000, XP (Server 2003), Vista (Server 2008)
  + all systems 32 bit (64 bit not tested)
  
---------------------------------------------------------------
  
* QUICK INSTALLATION:
  
[NOTE: Unpack the package to your USB stick or a partition of your choice. It must be on the highest level like E:\ or W:\. It will build E:\xampp or W:\xampp or something like this.]
  
Step 1: Please start the "setup_xampp.bat" and beginning the installation. Note: XAMPP makes no entries in the windows registry or adds new system variables.
  
Step 2: Start Apache with the Control Panel (xampp-control.exe) or with => \xampp\apache_start.bat.
        Stop Apache with the  Control Panel (xampp-control.exe) or with => \xampp\apache_stop.bat.
  
Step 3: Start MySQL with the Control Panel (xampp-control.exe) or with => \xampp\mysql_start.bat.
        Stop MySQL with the Control Panel (xampp-control.exe) or with => \xampp\mysql_stop.bat.
  
Step 4: Start your browser and type http://127.0.0.1/ or http://localhost/. You should see our pre-made start page with certain examples and test screens.
  
Step 5: The root directory (main document) f黵 HTTP(S) is => \xampp\htdocs. PHP files have the extension *.php, SSI *.shtml , CGI *.cgi (e.g. also for Perl scripts), Perl *.pl and ASP *.asp
  
Step 6: XAMPP UNINSTALL? Simply remove the "XAMPP" directory.
        You can also use "uninstall_xampp.bat" to do this task.
  
---------------------------------------------------------------
  
* PASSWORDS:
  
1) MySQL:
  
   User: root
   Password:
   (means no password!)
  
2) FileZilla FTP:
  
   User: newuser
   Password: wampp
  
   User: anonymous
   Password: some@mail.net
  
3) Mercury:
  
   Postmaster: postmaster (postmaster@localhost)
   Administrator: Admin (admin@localhost)
  
   TestUser: newuser
   Password: wampp
  
4) WEBDAV:
  
   User: wampp
   Password: xampp
  
---------------------------------------------------------------
  
* WINDOWS SERVICES:
  
- \xampp\apache\apache_installservice.bat
  ===> Install Apache as service
  
- \xampp\apache\apache_uninstallservice.bat
  ===> Uninstall Apache as service
  
- \xampp\mysql\mysql_installservice.bat
  ===> Install MySQL as service
  
- \xampp\mysql\mysql_uninstallservice.bat
  ===> Uninstall MySQL as service
  
- \xampp\filezilla\filezilla_installservice.bat
  ===> Install FileZilla as service
  
- \xampp\filezilla\filezilla_uninstallservice.bat
  ===> Uninstall FileZilla as service
  
- \xampp\mercury\mercury_installservice.bat
  ===> Install Mercury as service
  
- \xampp\mercury\mercury_uninstallservice.bat
  ===> Uninstall Mercury as service
  
Or just use the "Svc" checkboxes in the Control Panel.
  
----------------------------------------------------------------
  
A matter of security (A MUST READ!)
  
As mentioned before, XAMPP is not meant for production use but only for developers in a development environment. The way XAMPP is configured, is to be open as possible and allowing the developer anything he/she wants.
For development environments this is great but in a production environment it could be fatal.
Here a list of missing security in XAMPP:
  
- The MySQL administrator (root) has no password.
- The MySQL daemon is accessible via network.
- phpMyAdmin is accessible via network.
- Examples are accessible via network.
  
To fix most of the security weaknesses simply call the following URI:
  
    http://localhost/security/
  
The root password for MySQL and phpMyAdmin, and also a XAMPP directory protection can being established here.
  
* NOTE: Some example sites can only access by the local systems, means over localhost.
  
---------------------------------------------------------------
  
* MYSQL NOTES:
  
MySQL starts with standard values for the username and the password. The preset username is "root", the password is "" (= no password). To access MySQL via PHP with the preset values, you'll have to use the following syntax:
  
    mysql_connect("localhost", "root", "");
  
If you want to set a password for MySQL access, please use of MySQL Admin.
To set the passwort "secret" for the user "root", type the following:
  
    \xampp\mysql\bin\mysqladmin.exe -u root -psecret
  
After changing the password you'll have to reconfigure phpMyAdmin to use the new password, otherwise it won't be able to access the databases. To do that, open the file config.inc.php in \xampp\phpmyadmin\ and edit the following lines:
  
    $cfg['Servers'][$i]['user']            = 'root';   // MySQL User
    $cfg['Servers'][$i]['auth_type']       = 'cookie';   // HTTP authentification
  
So first the 'root' password is queried by the MySQL server, before you can access phpMyAdmin.
  
---------------------------------------------------------------
  
* CPAN/PEAR:
  
CPAN and PEAR are preinstalled with only the basic packages. If you need additional packages,
you can use the XAMPP Shell (xampp_shell.bat) and install them with the command line tools:
- cpanp i Foo
- pear install Foo
  
If you don't have a VC6 compiler, you can use "ppm" instead of "cpanp", to install binary packages.
  
---------------------------------------------------------------
  
        Have a lot of fun! | Viel Spa? | Bonne Chance!

顺带一提,百度BAE用的PHP版本是5.2.10,跟xampp的5.2.9是最相近的,应该用什么版本,相信你应该很清楚了。

援引BAE的官方说明:

PHP执行环境基于官方版本 5.2.10 实现,加上了BAE的安全隔离机制,既可以最大程度兼容原生的PHP大部分功能和函数,又可以在PHP级别保障应用之间的代码、数据访问的安全隔离,从而保证用户代码和数据的安全。

http://developer.baidu.com/wiki/index.php?title=docs/cplat/rt/php&diff=prev

知识共享许可协议 知识共享署名-非商业性使用-相同方式共享码农场 » 支持php5.2的最后一版xampp——xampp-1.7.1

评论 欢迎留言

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

我的作品

HanLP自然语言处理包《自然语言处理入门》