Notifications
Clear all

wpForo 1.x.x [Solved] Fatal Error, Method not found.

4 Posts
2 Users
1 Reactions
1,925 Views
Posts: 3
Topic starter
(@icaninteractive)
Active Member
Joined: 7 years ago

Hello, I hope everyone is having a good day.

I was trying to activate the wpForo plug in on my site but ran into this issue. 

Fatal error: Uncaught Error: Call to undefined function xml_parser_create() in /var/www/html/wp-content/plugins/wpforo/wpf-includes/class-phrases.php on line 142

 

Any ideas on how I could fix this?

 

Thank you for your time.

 

William McHugh

3 Replies
Robert
Posts: 10587
Admin
(@robert)
Support Team
Joined: 9 years ago

This is a server issue not wpForo.

xml_parser_create() is part of the XML PHP module. If the function is undefined then it would probably be a problem with the way your XML module is installed.

You need to make sure that your PHP does not disable xml support, which should be enabled by default. Ask your server administrator or hoster to remove the "--disable-xml" from the install script.

Eg: http://php.net/manual/en/xml.installation.php

If it is a windows install, try the following extension (use other extensions in php.ini for the exact syntax, and make sure that the file exists!)

extension=php_xmlrpc.dll

2 Replies
(@icaninteractive)
Joined: 7 years ago

Active Member
Posts: 3

Thank you very much. I will look into it.

(@icaninteractive)
Joined: 7 years ago

Active Member
Posts: 3

Would like to just touch base in saying that this was the issue and thank you for the help.