Call to undefined function domxml_open_file()

phpasks

New Member
Messages
145
Reaction score
0
Points
0
I am trying to do the following in PHP 5.0.3 without success:
Fatal error: Call to undefined function domxml_open_file() in D:\wwwroot\AdultXDating_New\admin\bos-user-access-permission.php on line 205


I have enabled all DOM XML Related
DOM/XML enabled
DOM/XML API Version 20031129
libxml Version 2.6.26
HTML Support enabled
XPath Support enabled
XPointer Support enabled
Schema Support enabled
RelaxNG Support enabled


How to solved this problem??????????

Regards,
Asif Khalyani
 

phpasks

New Member
Messages
145
Reaction score
0
Points
0
any budy know very urgently reply it.

I am trying to do the following in PHP 5.0.3 without success:
Fatal error: Call to undefined function domxml_open_file() in D:\wwwroot\AdultXDating_New\admin\bos-user-access-permission.php on line 205


I have enabled all DOM XML Related
DOM/XML enabled
DOM/XML API Version 20031129
libxml Version 2.6.26
HTML Support enabled
XPath Support enabled
XPointer Support enabled
Schema Support enabled
RelaxNG Support enabled


How to solved this problem??????????

Regards,
Asif Khalyani
 

woiwky

New Member
Messages
390
Reaction score
0
Points
0
Let me guess, it says "dom" above this phpinfo() output, right?

DOM/XML enabled
DOM/XML API Version 20031129
libxml Version 2.6.26
HTML Support enabled
XPath Support enabled
XPointer Support enabled
Schema Support enabled
RelaxNG Support enabled

The problem is the info is misleading. Even though it says "DOM/XML enabled", that information is for DOM, you need to install DOM XML. When you have it installed, you should see the info for "domxml" below the "dom" info.
 

phpasks

New Member
Messages
145
Reaction score
0
Points
0
Originally Posted by phpasks
I am trying to do the following in PHP 5.0.3 without success:
Fatal error: Call to undefined function domxml_open_file() in D:\wwwroot\AdultXDating_New\admin\bos-user-access-permission.php on line 205


I will found it function
domxml_open_file() for PHP 4 currently i am using php5.0.3

how it's work dom for PHP 5 below link through
http://www.phpasks.com/articles/xmlinphp5whatisnew.html


regards,
Asif
 

woiwky

New Member
Messages
390
Reaction score
0
Points
0
Originally Posted by phpasks
I am trying to do the following in PHP 5.0.3 without success:
Fatal error: Call to undefined function domxml_open_file() in D:\wwwroot\AdultXDating_New\admin\bos-user-access-permission.php on line 205


I will found it function
domxml_open_file() for PHP 4 currently i am using php5.0.3

how it's work dom for PHP 5 below link through
http://www.phpasks.com/articles/xmlinphp5whatisnew.html


regards,
Asif

As I said before, you probably don't have DOM XML installed. The information you posted (assuming from phpinfo()) about DOM/XML, libxml, etc being enabled is for the DOM extension:

http://www.php.net/manual/en/book.dom.php

DOM uses the DOM/XML API, but the DOM/XML API is *not* the DOM XML extension:

http://www.php.net/manual/en/book.domxml.php

When you have it installed, you'll see the info for it most likely directly under the info for dom:

domxmlvo9.jpg
 

phpasks

New Member
Messages
145
Reaction score
0
Points
0
lol...dating website?

What means dating website -> Grandcruiser
Edit:
thanks for help,
Great

I have done to solve this problem.

As I said before, you probably don't have DOM XML installed. The information you posted (assuming from phpinfo()) about DOM/XML, libxml, etc being enabled is for the DOM extension:

http://www.php.net/manual/en/book.dom.php

DOM uses the DOM/XML API, but the DOM/XML API is *not* the DOM XML extension:

http://www.php.net/manual/en/book.domxml.php

When you have it installed, you'll see the info for it most likely directly under the info for dom:

domxmlvo9.jpg
 
Last edited:
Top