When i want to use xml libraries in php i get this error
Fatal error: Call to undefined function domxml_new_doc() in C:\AppServ\www\direction\db2xml.php on line 5
how can i solve it ?
|
The
See my answers to |
|||
|
|
|
Check that you have the module enabled and also that you have all required libraries. |
|||
|
|
|
May be you have forget to uncomment or add
in your php.ini file? |
|||
|
|
|
If you are working with older code from PHP4 and wish to migrate the code to work on a php5 server with minimal effort, check out the following: http://www.silicon-vision.com/wp/quickpost-php4-domxml-to-php5/ Simply drop in the include file and reference it at the start of the file that is failing, and it will simply just work like it used to. Not much else to it really. Used it on several older sites after migrating them to a new VPS earlier this year and was quite pleased at solving the issue without having to sit there and rewrite someones spaghetti code :) |
|||
|
|
echo phpversion();to find out if you don't know. – lonesomeday Jan 20 '11 at 22:06