Ticket #333 (closed defect: worksforme)

Opened 3 years ago

Last modified 3 years ago

Fatal error: Call to undefined function xml_parser_create() in extlib/rss_parse.inc on line 802

Reported by: anonymous Owned by: mbonetti
Priority: high Milestone: Gregarius 0.5.5
Component: BUGS Version:
Severity: normal Keywords:
Cc:

Description

Fatal error: Call to undefined function xml_parser_create() in extlib/rss_parse.inc on line 802

I am updated to revision 1168

Doesn't seem to allow any feeds to be read, hence the high priority.

Change History

Changed 3 years ago by mbonetti

Do you have the same issue on 0.5.2 as well?

Changed 3 years ago by sdcosta

which version of php are you using?

Changed 3 years ago by sdcosta

  • status changed from new to closed
  • resolution set to worksforme

It looks like you probably do not have xml support compiled into php. Of if you have xml support compiled in, then it is probably not working correctly.

This is what I would advise 1. look at your phpinfo to see if xml support is compiled in

php -m | grep "xml"

2. If step 1 is correct then do the following

php -r 'print_r(get_defined_functions());' | grep xml_parser_create

If this gives you a php error, then create a test.php file with this line in it

<?php print_r(get_defined_functions()); ?>

and then run the command

php test.php | grep xml_parser_create

I am closing this bug for now. but feel free to re-open it if you have more comments or if your installation has the xml module working properly.

Changed 3 years ago by anonymous

Sorry, it does seem like the Php 5.1.1 package didn't come with xml support installed like previous verisons did, getting a package that does fixed the issue.

Thanks for your help!

Note: See TracTickets for help on using tickets.