Difference between revisions of "Talk:Install a new server (CentOS)"

From Organic Design wiki
(Nad, Last thing to check is that dom is supported in PHP)
Line 15: Line 15:
  
 
:PHP is currently compiled with:
 
:PHP is currently compiled with:
 +
<table class=document-code><tr><td>
 +
./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql=/usr/local/mysql --with-ming --with-xml --with-domxml --with-zlib-dir=/usr/local/lib
 +
</table>
 +
If dom is not there, this may need to be
  
 
+
<table class=document-code><tr><td>
 
+
./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql=/usr/local/mysql --with-ming --with-dom --with-zlib-dir=/usr/local/lib
 +
</table>
  
  
 
----
 
----

Revision as of 00:11, 31 March 2006

I'm pretty sure that --with-dom is usually --with-xml and --with-domxml...

Doesnt appear to be a --with-domxml switch (only dom)
[root@wikiexpert php-4.4.2]# ./configure --help | grep xml
  --with-dom[=DIR]        Include DOM support (requires libxml >= 2.4.14).
                          DIR is the libxml install directory.
  --disable-xml           Disable XML support using bundled expat lib
  --with-xmlrpc[=DIR]     Include XMLRPC-EPI support.
[root@wikiexpert php-4.4.2]# ./configure --help | grep dom
  --with-dom[=DIR]        Include DOM support (requires libxml >= 2.4.14).
  --with-dom-xslt[=DIR]     DOMXML: Include DOM XSLT support (requires libxslt >= 1.0.18).
  --with-dom-exslt[=DIR]    DOMXML: Include DOM EXSLT support (requires libxslt >= 1.0.18).
  --with-qtdom            Include QtDOM support (requires Qt >= 2.2.0).
PHP is currently compiled with:

./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql=/usr/local/mysql --with-ming --with-xml --with-domxml --with-zlib-dir=/usr/local/lib

If dom is not there, this may need to be

./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql=/usr/local/mysql --with-ming --with-dom --with-zlib-dir=/usr/local/lib