File: install-unix.html

package info (click to toggle)
php3 3%3A3.0.18-0potato1.1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 17,736 kB
  • ctags: 11,198
  • sloc: ansic: 108,120; sh: 2,512; php: 2,024; yacc: 1,887; makefile: 1,038; perl: 537; pascal: 238; awk: 90; cpp: 28; sql: 11
file content (2187 lines) | stat: -rw-r--r-- 36,206 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
<HTML
><HEAD
><TITLE
>Installation on UNIX systems</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.56"><LINK
REL="HOME"
TITLE="PHP Manual"
HREF="manual.html"><LINK
REL="UP"
TITLE="Installation"
HREF="installation.html"><LINK
REL="PREVIOUS"
TITLE="Installation"
HREF="installation.html"><LINK
REL="NEXT"
TITLE="Installation on Windows 95/98/NT systems"
HREF="install-windows95-nt.html"><META
NAME="HTTP_EQUIV"
CONTENT="text/html; charset=ISO-8859-1"></HEAD
><BODY
CLASS="sect1"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>PHP Manual</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="installation.html"
>Prev</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
>Chapter 2. Installation</TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="install-windows95-nt.html"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="sect1"
><H1
CLASS="sect1"
><A
NAME="install-unix"
>Installation on UNIX systems</A
></H1
><P
>&#13;    This section will guide you through the configuration and
    installation of PHP.  Prerequisite knowledge and software:
    
    <P
></P
><UL
><LI
><P
>&#13;       Basic UNIX skills (being able to operate "make" and a C
       compiler)
      </P
></LI
><LI
><P
>&#13;       An ANSI C compiler
      </P
></LI
><LI
><P
>&#13;       A web server
      </P
></LI
></UL
>
   </P
><DIV
CLASS="sect2"
><H2
CLASS="sect2"
><A
NAME="AEN138"
>Quick Installation Instructions (Apache Module Version)</A
></H2
><P
>&#13;     <DIV
CLASS="informalexample"
><P
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="programlisting"
>&#13;1.  gunzip apache_1.3.x.tar.gz
2.  tar xvf apache_1.3.x.tar
3.  gunzip php-x.x.x.tar.gz
4.  tar xvf php-x.x.x.tar
5.  cd apache_1.3.x
6.  ./configure --prefix=/www
7.  cd ../php-x.x.x
8.  ./configure --with-mysql --with-apache=../apache_1.3.x --enable-track-vars
9.  make
10. make install
11. cd ../apache_1.3.x
12. for PHP 3: ./configure --activate-module=src/modules/php3/libphp3.a
    for PHP 4: ./configure --activate-module=src/modules/php4/libphp4.a
13. make
14. make install

  Instead of this step you may prefer to simply copy the httpd binary
  overtop of your existing binary.  Make sure you shut down your
  server first though.

15. cd ../php-x.x.x
16. for PHP 3: cp php3.ini-dist /usr/local/lib/php3.ini
    for PHP 4: cp php.ini-dist /usr/local/lib/php.ini

  You can edit your .ini file to set PHP options.  If
  you prefer this file in another location, use
  --with-config-file-path=/path in step 8.

17. Edit your httpd.conf or srm.conf file and add: 
      
     For PHP 3:   AddType application/x-httpd-php3 .php3
     For PHP 4:   AddType application/x-httpd-php .php
 
  You can choose any extension you wish here.  .php is simply the one
  we suggest. You can even include .html .


18. Use your normal procedure for starting the Apache server. (You must
    stop and restart the server, not just cause the server to reload by
    use a HUP or USR1 signal.)
      </PRE
></TD
></TR
></TABLE
><P
></P
></DIV
>
    </P
></DIV
><DIV
CLASS="sect2"
><H2
CLASS="sect2"
><A
NAME="with-apache"
>Apache Module</A
></H2
><P
>&#13;     PHP can be compiled in a number of different ways. Here is a
     quick summary:
     <DIV
CLASS="informalexample"
><P
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="programlisting"
>&#13;./configure --with-apxs --with-pgsql
      </PRE
></TD
></TR
></TABLE
><P
></P
></DIV
>
    </P
><P
>&#13;     This will create a <TT
CLASS="filename"
>libphp4.so</TT
> shared library
     that is loaded into Apache using a LoadModule line in Apache's
     <TT
CLASS="filename"
>httpd.conf</TT
> file. The PostgreSQL support is
     embedded into this <TT
CLASS="filename"
>libphp4.so</TT
> library.
    </P
><P
>&#13;     <DIV
CLASS="informalexample"
><P
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="programlisting"
>&#13;./configure --with-apxs --with-pgsql=shared
      </PRE
></TD
></TR
></TABLE
><P
></P
></DIV
>
    </P
><P
>&#13;     This will again create a <TT
CLASS="filename"
>libphp4.so</TT
> shared
     library for Apache, but it will also create a
     <TT
CLASS="filename"
>pgsql.so</TT
> shared library that is loaded into
     PHP either by using the extension directive in
     <TT
CLASS="filename"
>php.ini</TT
> file or by loading it explicitly in
     a script using the <A
HREF="function.dl.html"
><B
CLASS="function"
>dl()</B
></A
> function.
    </P
><P
>&#13;     <DIV
CLASS="informalexample"
><P
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="programlisting"
>&#13;./configure --with-apache=/path/to/apache_source --with-pgsql
      </PRE
></TD
></TR
></TABLE
><P
></P
></DIV
>
    </P
><P
>&#13;     This will create a <TT
CLASS="filename"
>libmodphp4.a</TT
> library, a
     <TT
CLASS="filename"
>mod_php4.c</TT
> and some accompanying files and
     copy this into the <TT
CLASS="literal"
>src/modules/php4</TT
> directory
     in the Apache source tree. Then you compile Apache using
     <TT
CLASS="literal"
>--activate-module=src/modules/php4/libphp4.a</TT
>
     and the Apache build system will create
     <TT
CLASS="filename"
>libphp4.a</TT
> and link it statically into the
     <TT
CLASS="filename"
>httpd</TT
> binary. The PostgreSQL support is
     included directly into this <TT
CLASS="filename"
>httpd</TT
> binary, so
     the final result here is a single <TT
CLASS="filename"
>httpd</TT
>
     binary that includes all of Apache and all of PHP.
    </P
><P
>&#13;     <DIV
CLASS="informalexample"
><P
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="programlisting"
>&#13;./configure --with-apache=/path/to/apache_source --with-pgsql=shared
      </PRE
></TD
></TR
></TABLE
><P
></P
></DIV
>
    </P
><P
>&#13;     Same as before, except instead of including PostgreSQL support
     directly into the final <TT
CLASS="filename"
>httpd</TT
> you will get a
     <TT
CLASS="filename"
>pgsql.so</TT
> shared library that you can load
     into PHP from either the <TT
CLASS="filename"
>php.ini</TT
> file or
     directly using <A
HREF="function.dl.html"
><B
CLASS="function"
>dl()</B
></A
>.
    </P
><P
>&#13;     When choosing to build PHP in different ways, you should consider
     the advantages and drawbacks of each method. Building as a shared
     object will mean that you can compile apache separately, and don't
     have to recompile everything as you add to, or change, PHP.
     Building PHP into apache (static method) means that PHP will
     load and run faster. For more information, see the Apache
     <A
HREF="http://www.apache.org/docs/dso.html"
TARGET="_top"
>webpage on DSO support</A
>.
    </P
></DIV
><DIV
CLASS="sect2"
><H2
CLASS="sect2"
><A
NAME="with-fhttpd"
>fhttpd Module</A
></H2
><P
>&#13;     To build PHP as an fhttpd module, answer "yes" to "Build as an
     fhttpd module?" (the <TT
CLASS="option"
><A
HREF="install-unix.html#with-fhttpd"
>&#13;     --with-fhttpd</A
>=<TT
CLASS="replaceable"
><I
>DIR</I
></TT
></TT
>
     option to configure) and specify the fhttpd source base
     directory.  The default directory is <TT
CLASS="filename"
>/usr/local/src/fhttpd</TT
>. If you are
     running fhttpd, building PHP as a module will give better
     performance, more control and remote execution
     capability.
    </P
></DIV
><DIV
CLASS="sect2"
><H2
CLASS="sect2"
><A
NAME="install-cgi"
>CGI version</A
></H2
><P
>&#13;     The default is to build PHP as a CGI program.  If you are
     running a web server PHP has module support for, you should
     generally go for that solution for performance reasons.  However,
     the CGI version enables Apache users to run different
     PHP-enabled pages under different user-ids.  Please make sure
     you read through the <A
HREF="security.html"
>Security
     chapter</A
> if you are going to run PHP as a CGI.
    </P
></DIV
><DIV
CLASS="sect2"
><H2
CLASS="sect2"
><A
NAME="database-support-options"
>Database Support Options</A
></H2
><P
>&#13;     PHP has native support for a number of databases (as well as
     ODBC):
    </P
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-adabas"
>Adabas D</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-adabas<TT
CLASS="replaceable"
><I
>=DIR</I
></TT
></TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Enables Adabas D support.  The parameter is the Adabas D
      install directory and defaults to <TT
CLASS="filename"
>/usr/local/adabasd</TT
>.
     </P
><P
>&#13;      <A
HREF="http://www.adabas.com/"
TARGET="_top"
>Adabas home page</A
>
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-dbase"
>dBase</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-dbase</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Enables the bundled DBase support.  No external libraries are
      required.
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-filepro"
>filePro</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-filepro</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Enables the bundled read-only filePro support.  No external
      libraries are required.
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-ibm-db2"
>IBM DB2</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-ibm-db2<TT
CLASS="replaceable"
><I
>=DIR</I
></TT
></TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Enables IBM DB2 support.  The parameter to this option is the 
      DB2 base install directory and defaults to 
      <TT
CLASS="filename"
>/home/db2inst1/sqllib</TT
>.
     </P
><P
>&#13;      <A
HREF="http://www.ibm.com/db2/"
TARGET="_top"
>IBM DB2 home page</A
>
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-msql"
>mSQL</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-msql<TT
CLASS="replaceable"
><I
>=DIR</I
></TT
></TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Enables mSQL support.  The parameter to this option is the mSQL
      install directory and defaults to <TT
CLASS="filename"
>/usr/local/Hughes</TT
>.  This is the
      default directory of the mSQL 2.0 distribution.
      <B
CLASS="command"
>configure</B
> automatically detects which mSQL
      version you are running and PHP supports both 1.0 and 2.0, but
      if you compile PHP with mSQL 1.0, you can only access mSQL 1.0
      databases, and vice-versa.
     </P
><P
>&#13;      See also <A
HREF="configuration.html#ini.sect.msql"
>mSQL Configuration</A
>
      Directives in the <A
HREF="configuration.html#configuration.file"
>configuration
      file</A
>.
     </P
><P
>&#13;      <A
HREF="http://www.hughes.com.au/"
TARGET="_top"
>mSQL home page</A
>
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-mysql"
>MySQL</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-mysql<TT
CLASS="replaceable"
><I
>=DIR</I
></TT
></TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Enables MySQL support.  The parameter to this option is the
      MySQL install directory and defaults to <TT
CLASS="filename"
>/usr/local</TT
>.  This is the default
      installation directory of the MySQL distribution.
     </P
><P
>&#13;      See also <A
HREF="configuration.html#ini.sect.mysql"
>MySQL
      Configuration</A
> Directives in the <A
HREF="configuration.html#configuration.file"
>configuration file</A
>.
     </P
><P
>&#13;      <A
HREF="http://www.mysql.com/"
TARGET="_top"
>MySQL home page</A
>
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-iodbc"
>iODBC</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-iodbc<TT
CLASS="replaceable"
><I
>=DIR</I
></TT
></TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Includes iODBC support.  This feature was first developed for
      iODBC Driver Manager, a freely redistributable ODBC driver
      manager which runs under many flavors of UNIX. The parameter to
      this option is the iODBC installation directory and defaults to
      <TT
CLASS="filename"
>/usr/local</TT
>.</P
><P
>&#13;      <A
HREF="http://users.ids.net/~bjepson/freeODBC/"
TARGET="_top"
>FreeODBC home page</A
> 
      or <A
HREF="http://www.iodbc.org/"
TARGET="_top"
>iODBC home page</A
>
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-openlink"
>OpenLink ODBC</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-openlink<TT
CLASS="replaceable"
><I
>=DIR</I
></TT
></TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Includes OpenLink ODBC support. The parameter to this option is
      the OpenLink ODBC installation directory and defaults to
      <TT
CLASS="filename"
>/usr/local/openlink</TT
>.
     </P
><P
>&#13;      <A
HREF="http://www.openlinksw.com/"
TARGET="_top"
>OpenLink Software's home
      page</A
>
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-oracle"
>Oracle</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-oracle<TT
CLASS="replaceable"
><I
>=DIR</I
></TT
></TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Includes Oracle support.  Has been tested and should be working
      at least with Oracle versions 7.0 through 7.3.  The parameter is
      the <TT
CLASS="envar"
>ORACLE_HOME</TT
> directory.  You do not have to
      specify this parameter if your Oracle environment has been set
      up.</P
><P
>&#13;      <A
HREF="http://www.oracle.com/"
TARGET="_top"
>Oracle home page</A
>
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-pgsql"
>PostgreSQL</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-pgsql<TT
CLASS="replaceable"
><I
>=DIR</I
></TT
></TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Includes PostgreSQL support.  The parameter is the PostgreSQL
      base install directory and defaults to <TT
CLASS="filename"
>/usr/local/pgsql</TT
>.
     </P
><P
>&#13;      See also <A
HREF="configuration.html#ini.sect.pgsql"
>Postgres
      Configuration</A
> Directives in the <A
HREF="configuration.html#configuration.file"
>configuration file</A
>.
     </P
><P
>&#13;      <A
HREF="http://www.postgresql.org/"
TARGET="_top"
>PostgreSQL home
      page</A
>
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-solid"
>Solid</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-solid<TT
CLASS="replaceable"
><I
>=DIR</I
></TT
></TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Includes Solid support.  The parameter is the Solid install
      directory and defaults to <TT
CLASS="filename"
>/usr/local/solid</TT
>.
     </P
><P
>&#13;      <A
HREF="http://www.solidtech.com/"
TARGET="_top"
>Solid home page</A
>
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-sybase"
>Sybase</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-sybase<TT
CLASS="replaceable"
><I
>=DIR</I
></TT
></TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Includes Sybase support.  The parameter is the Sybase install
      directory and defaults to <TT
CLASS="filename"
>/home/sybase</TT
>.
     </P
><P
>&#13;      See also <A
HREF="configuration.html#ini.sect.sybase"
>Sybase
      Configuration</A
> Directives in the <A
HREF="configuration.html#configuration.file"
>configuration file</A
>.
     </P
><P
>&#13;      <A
HREF="http://www.sybase.com/"
TARGET="_top"
>Sybase home page</A
>
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-sybase-ct"
>Sybase-CT</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-sybase-ct<TT
CLASS="replaceable"
><I
>=DIR</I
></TT
></TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Includes Sybase-CT support.  The parameter is the Sybase-CT
      install directory and defaults to <TT
CLASS="filename"
>/home/sybase</TT
>.
     </P
><P
>&#13;      See also <A
HREF="configuration.html#ini.sect.sybct"
>Sybase-CT
      Configuration</A
> Directives in the <A
HREF="configuration.html#configuration.file"
>configuration
      file</A
>.
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-velocis"
>Velocis</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-velocis<TT
CLASS="replaceable"
><I
>=DIR</I
></TT
></TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Includes Velocis support.  The parameter is the Velocis install
      directory and defaults to <TT
CLASS="filename"
>/usr/local/velocis</TT
>.
     </P
><P
>&#13;      <A
HREF="http://www.raima.com/"
TARGET="_top"
>Velocis home page</A
>
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-custom-odbc"
>A custom ODBC library</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-custom-odbc<TT
CLASS="replaceable"
><I
>=DIR</I
></TT
></TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Includes support for an arbitrary custom ODBC library.  The
      parameter is the base directory and defaults to <TT
CLASS="filename"
>/usr/local</TT
>.
     </P
><P
>&#13;      This option implies that you have defined CUSTOM_ODBC_LIBS when
      you run the configure script. You also must have a valid odbc.h
      header somewhere in your include path. If you don't have one,
      create it and include your specific header from there. Your
      header may also require some extra definitions, particularly
      when it is multiplatform. Define them in CFLAGS.</P
><P
>&#13;      For example, you can use Sybase SQL Anywhere on QNX as
      following:
      <TT
CLASS="literal"
>&#13;       CFLAGS=-DODBC_QNX LDFLAGS=-lunix CUSTOM_ODBC_LIBS="-ldblib
       -lodbc" ./configure --with-custom-odbc=/usr/lib/sqlany50
      </TT
>
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="disable-unified-odbc"
>Unified ODBC</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--disable-unified-odbc</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Disables the Unified ODBC module, which is a common interface to
      all the databases with ODBC-based interfaces, such as Solid, 
      IBM DB2 and Adabas D.  It also works for normal ODBC libraries. 
      Has been tested with iODBC, Solid, Adabas D, IBM DB2 and Sybase SQL
      Anywhere. Requires that one (and only one) of these modules or
      the Velocis module is enabled, or a custom ODBC library
      specified. This option is only applicable if one of the
      following options is used: <A
HREF="install-unix.html#with-iodbc"
>--with-iodbc</A
>, <A
HREF="install-unix.html#with-solid"
>--with-solid</A
>, <A
HREF="install-unix.html#with-ibm-db2"
>--with-ibm-db2</A
>, <A
HREF="install-unix.html#with-adabas"
>--with-adabas</A
>, <A
HREF="install-unix.html#with-velocis"
>--with-velocis</A
>, or <A
HREF="install-unix.html#with-custom-odbc"
>--with-custom-odbc</A
>.
     </P
><P
>&#13;      See also <A
HREF="configuration.html#ini.sect.uodbc"
>Unified ODBC
      Configuration</A
> Directives in the <A
HREF="configuration.html#configuration.file"
>configuration
      file</A
>.
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-ldap"
>LDAP</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-ldap<TT
CLASS="replaceable"
><I
>=DIR</I
></TT
></TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Includes <SPAN
CLASS="acronym"
>LDAP</SPAN
> (Lightweight Directory Access
      Protocol) support.  The parameter is the LDAP base install
      directory, defaults to <TT
CLASS="filename"
>/usr/local/ldap</TT
>.
     </P
><P
>&#13;      More information about LDAP can be found in <A
HREF="http://www.faqs.org/rfcs/rfc1777.html"
TARGET="_top"
>RFC1777</A
> and
      <A
HREF="http://www.faqs.org/rfcs/rfc1778.html"
TARGET="_top"
>RFC1778</A
>.
     </P
></DIV
></DIV
><DIV
CLASS="sect2"
><H2
CLASS="sect2"
><A
NAME="AEN364"
>Other configure options</A
></H2
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-mcrypt"
>--with-mcrypt<TT
CLASS="replaceable"
><I
>=DIR</I
></TT
></A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-mcrypt</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Include support for the mcrypt library. See the <A
HREF="ref.mcrypt.html"
>mcrypt documentation</A
> for more
      information. If you use the optional
      <TT
CLASS="replaceable"
><I
>DIR</I
></TT
> argument, PHP will look for
      mcrypt.h in <TT
CLASS="replaceable"
><I
>DIR</I
></TT
>/include.
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="enable-sysvsem"
>--enable-sysvsem</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--enable-sysvsem</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Include support for Sys V semaphores (supported by most Unix
      derivates). See the <A
HREF="ref.sem.html"
>Semaphore and Shared
      Memory documentation</A
> for more information.
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="enable-sysvshm"
>--enable-sysvshm</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--enable-sysvshm</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Include support for Sys V shared memory (supported by most Unix
      derivates). See the <A
HREF="ref.sem.html"
>Semaphore and Shared
      Memory documentation</A
> for more information.
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-xml"
>--with-xml</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-xml</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Include support for a non-validating XML parser using James
      Clark's <A
HREF="http://www.jclark.com/xml/"
TARGET="_top"
>expat library</A
>.  See the
      <A
HREF="ref.xml.html"
>XML function reference</A
> for
      details.
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="enable-maintainer-mode"
>--enable-maintainer-mode</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--enable-maintainer-mode</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Turns on extra dependencies and compiler warnings used by some
      of the PHP developers.</P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-system-regex"
>--with-system-regex</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-system-regex</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Uses the system's regular expression library rather than the
      bundled one.  If you are building PHP as a server module, you
      must use the same library when building PHP as when linking the
      server.  Enable this if the system's library provides special
      features you need.  It is recommended that you use the bundled
      library if possible.</P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-config-file-path"
>--with-config-file-path</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-config-file-path=DIR</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      The path used to look for <A
HREF="configuration.html#configuration.file"
>the
      configuration file</A
> when PHP starts up.
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="with-exec-dir"
>--with-exec-dir</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--with-exec-dir<TT
CLASS="replaceable"
><I
>=DIR</I
></TT
></TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Only allow running of executables in DIR when in safe mode.
      Defaults to <TT
CLASS="filename"
>/usr/local/bin</TT
>.
      This option only sets the default, it may be changed with the
      <A
HREF="configuration.html#ini.safe-mode-exec-dir"
>safe_mode_exec_dir</A
>
      directive in the <A
HREF="configuration.html#configuration.file"
>configuration
      file</A
> later.</P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="enable-debug"
>--enable-debug</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--enable-debug</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Enables extra debug information. This makes it possible to
      gather more detailed information when there are problems with
      PHP.  (Note that this doesn't have anything to do with debugging
      facilities or information available to PHP scripts.)
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="enable-safe-mode"
>--enable-safe-mode</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--enable-safe-mode</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Enables "safe mode" by default. This imposes several
      restrictions on what PHP can do, such as opening only files
      within the document root.  Read the <A
HREF="security.html"
>Security chapter</A
> for more more
      information.  CGI users should always enable secure mode.  This
      option only sets the default, it may be enabled or disabled with
      the <A
HREF="configuration.html#ini.safe-mode"
>safe_mode</A
> directive in
      the <A
HREF="configuration.html#configuration.file"
>configuration file</A
>
      later.
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="enable-track-vars"
>--enable-track-vars</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--enable-track-vars</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Makes PHP keep track of where GET/POST/cookie variables come
      from in the arrays HTTP_GET_VARS, HTTP_POST_VARS and
      HTTP_COOKIE_VARS.  This option only sets the default, it may be
      enabled or disabled with the <A
HREF="configuration.html#ini.track-vars"
>track_vars</A
> directive in the
      <A
HREF="configuration.html#configuration.file"
>configuration file</A
>
      later.
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="enable-magic-quotes"
>--enable-magic-quotes</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--enable-magic-quotes</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Enable magic quotes by default.  This option only sets the
      default, it may be enabled or disabled with the <A
HREF="configuration.html#ini.magic-quotes-runtime"
>magic_quotes_runtime</A
>
      directive in the <A
HREF="configuration.html#configuration.file"
>configuration file</A
>
      later. See also the <A
HREF="configuration.html#ini.magic-quotes-gpc"
>&#13;      magic_quotes_gpc</A
> and the <A
HREF="configuration.html#ini.magic-quotes-sybase"
>magic_quotes_sybase</A
>
      directives.
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="enable-debugger"
>--enable-debugger</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--enable-debugger</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Enables the internal PHP debugger support.  This feature is
      still in an experimental state. See also the <A
HREF="configuration.html#ini.sect.debugger"
>Debugger Configuration</A
>
      directives in the <A
HREF="configuration.html#configuration.file"
>configuration
      file</A
>.
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="enable-discard-path"
>--enable-discard-path</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--enable-discard-path</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      If this is enabled, the PHP CGI binary can safely be placed
      outside of the web tree and people will not be able to
      circumvent .htaccess security.  Read the <A
HREF="security.html#security.cgi.shell"
>section in the security
      chapter</A
> about this option.
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="enable-bcmath"
>--enable-bcmath</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--enable-bcmath</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Enables <B
CLASS="command"
>bc</B
> style arbitrary precision math
      functions. See also the <A
HREF="configuration.html#ini.sect.bcmath"
>bcmath.scale </A
> option in the
      <A
HREF="configuration.html#configuration.file"
>configuration
      file</A
>.
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="enable-force-cgi-redirect"
>--enable-force-cgi-redirect</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--enable-force-cgi-redirect</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Enable the security check for internal server redirects.  You
      should use this if you are running the CGI version with
      Apache.
     </P
><P
>&#13;      When using PHP as a CGI binary, PHP by default always first
      checks that it is used by redirection (for example under Apache,
      by using Action directives).  This makes sure that the PHP
      binary cannot be used to bypass standard web server
      authentication procedures by calling it directly, like <TT
CLASS="filename"
>http://my.host/cgi-bin/php/secret/doc.html</TT
>.
      This example accesses <TT
CLASS="filename"
>http://my.host/secret/doc.html</TT
> but does
      not honour any security settings enforced by httpd for directory
      <TT
CLASS="filename"
>/secret</TT
>.
     </P
><P
>&#13;      Not enabling option disables the check and enables bypassing
      httpd security and authentication settings.  Do this only if
      your server software is unable to indicate that a safe
      redirection was done and all your files under your document root
      and user directories may be accessed by anyone.
     </P
><P
>&#13;      Read the <A
HREF="security.html#security.cgi.force-redirect"
>section in
      the security chapter</A
> about this option.
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="disable-short-tags"
>--disable-short-tags</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--disable-short-tags</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Disables the short form <TT
CLASS="literal"
>&#60;? ?&#62;</TT
> PHP tags.
      You must disable the short form if you want to use PHP with
      <SPAN
CLASS="acronym"
>XML</SPAN
>.  With short tags disabled, the only PHP
      code tag is <TT
CLASS="literal"
>&#60;?php ?&#62;</TT
>.  This option only
      sets the default, it may be enabled or disabled with the <A
HREF="configuration.html#ini.short-open-tag"
>short_open_tag</A
> directive in
      the <A
HREF="configuration.html#configuration.file"
>configuration file</A
>
      later.
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="enable-url-includes"
>--enable-url-includes</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--enable-url-includes</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Makes it possible to run code on other HTTP or FTP servers
      directly from PHP with <A
HREF="function.include.html"
>include()</A
>.  See also the <A
HREF="configuration.html#ini.include-path"
>include_path</A
> option in the
      <A
HREF="configuration.html#configuration.file"
>configuration file</A
>.
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="disable-syntax-hl"
>--disable-syntax-hl</A
></H3
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="synopsis"
>&#13;      <TT
CLASS="option"
>--disable-syntax-hl</TT
>
     </PRE
></TD
></TR
></TABLE
><P
>&#13;      Turns off syntax highlighting.
     </P
></DIV
><DIV
CLASS="sect3"
><H3
CLASS="sect3"
><A
NAME="AEN504"
>CPPFLAGS and LDFLAGS</A
></H3
><P
>&#13;      To make the PHP installation look for header or library files in
      different directories, modify the <TT
CLASS="envar"
>CPPFLAGS</TT
> and
      <TT
CLASS="envar"
>LDFLAGS</TT
> environment variables, respectively.  If
      you are using a sensible shell, you should be able to do
      <B
CLASS="command"
>&#13;       LDFLAGS=-L/my/lib/dir CPPFLAGS=-I/my/include/dir ./configure
      </B
>
     </P
></DIV
></DIV
><DIV
CLASS="sect2"
><H2
CLASS="sect2"
><A
NAME="AEN510"
>Building</A
></H2
><P
>&#13;     When PHP is configured, you are ready to build the CGI executable
     or the PHP library.  The command <B
CLASS="command"
>make</B
> should
     take care of this.  If it fails and you can't figure out why, see
     the <A
HREF="install-problems.html"
>Problems section</A
>.
    </P
></DIV
><DIV
CLASS="sect2"
><H2
CLASS="sect2"
><A
NAME="AEN515"
>Testing</A
></H2
><P
>&#13;     If you have built PHP as a CGI program, you may test your build
     by typing <B
CLASS="command"
>make test</B
>.  It is always a good idea
     to test your build.  This way you may catch a problem with PHP on
     your platform early instead of having to struggle with it later.
    </P
></DIV
><DIV
CLASS="sect2"
><H2
CLASS="sect2"
><A
NAME="AEN519"
>Benchmarking</A
></H2
><P
>&#13;     If you have built PHP as a CGI program, you may benchmark your
     build by typing <B
CLASS="command"
>make bench</B
>. Note that if safe
     mode is on by default, the benchmark may not be able to finish if
     it takes longer then the 30 seconds allowed. This is because the
     <A
HREF="function.set-time-limit.html"
><B
CLASS="function"
>set_time_limit()</B
></A
> can not be used in safe
     mode. Use the <A
HREF="configuration.html#ini.max-execution-time"
>max_execution_time</A
>
     configuration setting to control this time for your own
     scripts. <B
CLASS="command"
>make bench</B
> ignores the <A
HREF="configuration.html#configuration.file"
>configuration file</A
>.
    </P
></DIV
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="installation.html"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="manual.html"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="install-windows95-nt.html"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>Installation</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="installation.html"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>Installation on Windows 95/98/NT systems</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>