source: content/web/php.xml@ 84e42bc

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 84e42bc was 84e42bc, checked in by Igor Živković <igor@…>, 20 years ago

Typo fix.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2847 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 5.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY php-download-http "http://us2.php.net/distributions/php-&php-version;.tar.bz2">
8 <!ENTITY php-download-ftp "ftp://ftp.isu.edu.tw/pub/Unix/Web/PHP/distributions/php-&php-version;.tar.bz2">
9 <!ENTITY php-size "4.4 MB">
10 <!ENTITY php-buildsize "101 MB">
11 <!ENTITY php-time "1.42 SBU">
12]>
13
14<sect1 id="php" xreflabel="PHP-&php-version;">
15<sect1info>
16<othername>$LastChangedBy$</othername>
17<date>$Date$</date>
18</sect1info>
19<?dbhtml filename="php.html"?>
20<title><acronym>PHP</acronym>-&php-version;</title>
21
22<sect2>
23<title>Introduction to <application><acronym>PHP</acronym></application></title>
24
25<para><application><acronym>PHP</acronym></application> is the PHP
26Hypertext Preprocessor. Primarily used in dynamic web sites, it allows for
27programming code to be directly embedded into the
28<acronym>HTML</acronym> markup.</para>
29
30<sect3><title>Package information</title>
31<itemizedlist spacing='compact'>
32<listitem><para>Download (HTTP): <ulink url="&php-download-http;"/></para></listitem>
33<listitem><para>Download (FTP): <ulink url="&php-download-ftp;"/></para></listitem>
34<listitem><para>Download size: &php-size;</para></listitem>
35<listitem><para>Estimated disk space required: &php-buildsize;</para></listitem>
36<listitem><para>Estimated build time: &php-time;</para></listitem></itemizedlist>
37</sect3>
38
39<sect3><title><application><acronym>PHP</acronym></application> dependencies</title>
40<sect4><title>Required</title>
41<para>
42<xref linkend="apache"/>
43</para></sect4>
44<sect4><title>Optional</title>
45<para>
46<xref linkend="libxml2"/>,
47<xref linkend="libxslt"/>,
48<xref linkend="openssl"/>,
49<xref linkend="bc"/>,
50<ulink url="http://www.fastio.com/">ClibPDF</ulink>,
51<xref linkend="libjpeg"/>,
52<xref linkend="libtiff"/>,
53<xref linkend="curl"/>,
54<ulink url="http://qdbm.sourceforge.net/">QDBM</ulink>,
55<xref linkend="gdbm"/>,
56<xref linkend="db"/>,
57<xref linkend="fam"/>,
58<ulink url="http://www.boutell.com/gd/">GD</ulink>,
59<xref linkend="libpng"/>,
60X (<xref linkend="xorg"/> or <xref linkend="xfree86"/>),
61<xref linkend="freetype2"/>,
62<ulink url="http://gd.tuwien.ac.at/visual/ibiblio/libs/graphics/t1lib-5.0.2.tar.gz">t1lib</ulink>,
63<xref linkend="gmp"/>
64<xref linkend="mysql"/>,
65<xref linkend="pcre"/>,
66<xref linkend="postgresql"/>,
67<xref linkend="openldap"/>,
68<xref linkend="mitkrb"/> or <xref linkend="heimdal"/>,
69<ulink url="http://mcrypt.hellug.gr/">libmcrypt</ulink>,
70<ulink url="http://mhash.sourceforge.net/">mhash</ulink>,
71<xref linkend="expat"/> and
72<ulink url="../server/mail.html">MTA</ulink>
73</para></sect4>
74</sect3>
75
76</sect2>
77
78<sect2>
79<title>Installation of <application><acronym>PHP</acronym></application></title>
80
81<note><para>You can use <application><acronym>PHP</acronym></application>
82for server-side scripting, command line scripting or client-side
83<acronym>GUI</acronym> applications. The book provides instructions for
84setting up <application><acronym>PHP</acronym></application> for
85server-side scripting as it is the most common form.</para></note>
86
87<para>Install <application><acronym>PHP</acronym></application> by
88running the following commands:</para>
89
90<screen><userinput><command>./configure --prefix=/usr \
91 --sysconfdir=/etc \
92 --with-apxs2 \
93 --with-config-file-path=/etc \
94 --with-zlib \
95 --with-bz2 \
96 --enable-ftp \
97 --with-gettext \
98 --with-iconv \
99 --with-ncurses \
100 --disable-libxml &amp;&amp;
101make &amp;&amp;
102make install &amp;&amp;
103cp php.ini-recommended /etc/php.ini</command></userinput></screen>
104
105<para>Remove the <parameter>--disable-libxml</parameter> switch if you
106have <xref linkend="libxml2"/> installed otherwise
107<command>pear</command> will not be built.</para>
108
109<note><para><acronym>PHP</acronym> has many more configure options that
110will enable support for certain things. You can use
111<command>./configure --help</command> to see a full list of the
112available options. Also, use of the
113<ulink url="http://www.php.net/"><acronym>PHP</acronym> web site</ulink>
114is highly recommended, as their online docs are very good.</para></note>
115
116</sect2>
117
118<sect2>
119<title>Configuring <application><acronym>PHP</acronym></application></title>
120
121<sect3><title>Config files</title>
122<para><filename>/etc/php.ini</filename>,
123<filename>/etc/pear.conf</filename></para>
124</sect3>
125
126<sect3><title>Configuration Information</title>
127
128<para>To enable <acronym>PHP</acronym> support in the
129<application>Apache</application> web server,
130a new LoadModule (this one should be handled automatically by the
131<command>make install</command> command) and AddType directives must be added to the
132<filename>httpd.conf</filename> file:</para>
133
134<screen><userinput>LoadModule php5_module lib/apache/libphp5.so
135AddType application/x-httpd-php .php</userinput></screen>
136
137<para>Also, it can be useful to add an entry for index.php to the
138DirectoryIndex directive of the <filename>httpd.conf</filename>
139file.</para>
140
141</sect3>
142
143</sect2>
144
145<sect2>
146<title>Contents</title>
147
148<para>The <application><acronym>PHP</acronym></application> package contains
149<command>pear</command>,
150<command>php</command>,
151<command>php-config</command>,
152<command>phpextdist</command> and
153<command>phpize</command>.
154</para>
155
156</sect2>
157
158<sect2><title>Description</title>
159
160<sect3><title>php</title>
161<para><command>php</command> is a command line interface that enables
162you to parse and execute <acronym>PHP</acronym> code.</para></sect3>
163
164<sect3><title>pear</title>
165<para><command>pear</command> is the PHP Extension and Application
166Repository (<acronym>PEAR</acronym>) package manager.</para></sect3>
167
168</sect2>
169
170</sect1>
Note: See TracBrowser for help on using the repository browser.