一二三区免费观看|av无码字幕av|亚洲AV综合色区无码一区|五月激情网婷婷激情|久久久久久久久久久久久大色天下|国产97av在线|四虎一区在线观看|96人人操_人人|九九九日本精品免费观看|伊人久久激情

如何在 Mac OX X 下面安裝 php

時間:2024-10-17 22:19:50 PHP 我要投稿
  • 相關推薦

如何在 Mac OX X 下面安裝 php

  Mac OS X installs

  This section contains notes and hints specific to installing PHP on Mac OS X.

  Using Packages

  There are a few pre-packaged and pre-compiled versions of PHP for Mac OS X. This can greatly assist in setting up a standard configuration, but if you need to have a different set of features (such as a secure server, or a different database driver), you may need to build PHP and/or your web server yourself. If you are unfamiliar with building and compiling your own software, it's worth investigating whether or not somebody has already built a packaged version of PHP with the features you need. Lightyear Design offers a pre-built version of PHP for OS X, as does Tenon Intersystems.

  Compiling for OS X server

  There are two slightly different versions of Mac OS X, client and server. The following is for OS X Server.

  Example 2-3. Mac OS X server install

  1. Get the latest distributions of Apache and PHP

  2. Untar them, and run the configure program on Apache like so.

  ./configure --exec-prefix=/usr

  --localstatedir=/var

  --mandir=/usr/share/man

  --libexecdir=/System/Library/Apache/Modules

  --iconsdir=/System/Library/Apache/Icons

  --includedir=/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers

  --enable-shared=max

  --enable-module=most

  --target=apache

  4. You may also want to add this line:

  setenv OPTIM=-O2

  If you want the compiler to do some optimization.

  5. Next, go to the php4 source directory and configure it.

  ./configure --prefix=/usr

  --sysconfdir=/etc

  --localstatedir=/var

  --mandir=/usr/share/man

  --with-xml

  --with-apache=/src/apache_1.3.12

  If you have any other addiitons (MySQL, GD, etc.), be sure to add

  them here. For the --with-apache string, put in the path to your

  apache source directory, for example "/src/apache_1.3.12".

  6. make

  7. make install

  This will add a directory to your Apache source directory under

  src/modules/php4.

  8. Now, reconfigure Apache to build in PHP4.

  ./configure --exec-prefix=/usr

  --localstatedir=/var

  --mandir=/usr/share/man

  --libexecdir=/System/Library/Apache/Modules

  --iconsdir=/System/Library/Apache/Icons

  --includedir=/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers

  --enable-shared=max

  --enable-module=most

  --target=apache

  --activate-module=src/modules/php4/libphp4.a

  You may get a message telling you that libmodphp4.a is out of date.

  If so, go to the src/modules/php4 directory inside your apache

  source directory and run this command:

  ranlib libmodphp4.a

  Then go back to the root of the apache source directory and run the

  above configure command again. That'll bring the link table up to

  date.

  9. make

  10. make install

  11. copy and rename the php.ini-dist file to your "bin" directory from your

  php4 source directory:

  cp php.ini-dist /usr/local/bin/php.ini

  or (if your don't have a local directory)

  cp php.ini-dist /usr/bin/php.ini

【如何在 Mac OX X 下面安裝 php】相關文章:

如何在cmd下面寫php代碼01-22

PHP開發(fā)環(huán)境安裝的方法有哪些10-27

關于php面試寶典及PHP面試技巧08-16

mac給文件夾加密的方法08-18

Mac電腦硬盤格式的查看方式08-14

PHP的壓縮函數(shù)06-21

php高級教程01-23

怎樣設置mac顯示器外接02-16

如何學好PHP知識09-20

 PHP的基礎編程與應用10-16