Hello

I get this error while saving an article.

Fatal error: Call to undefined function: http_build_query() in ......./sites/all/modules/opencalais/calais_api.module on line 148

Is this something which has a patch?

Thanks
Sean

Comments

febbraro’s picture

Assigned: Unassigned » febbraro

What version of PHP are you using? I think http_build_query is a PHP5 only function.

febbraro’s picture

If you are using PHP4 this function is implemented in a PEAR Compatibility package, http://pear.php.net/package/PHP_Compat

vascopj’s picture

Status: Active » Closed (fixed)

Thank you very much

That fixed it alright.

putting

<?php
require_once '............./sites/all/modules/PHP/Compat/Function/http_build_query.php';

?>

into the settings.php file for the site worked a treat.

Thanks
Vas