You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by "Martin Webb (JIRA)" <ji...@apache.org> on 2008/01/09 14:28:34 UTC

[jira] Updated: (SHINDIG-4) Call to undefined function bcadd() in RSA.class.php

     [ https://issues.apache.org/jira/browse/SHINDIG-4?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Webb updated SHINDIG-4:
------------------------------


Resolved for me by dynamically loading bcmath module within config.php:

if (!extension_loaded('bcmath')) {
    $prefix = (PHP_SHLIB_SUFFIX === 'dll') ? 'php_' : '';
    dl($prefix . 'bcmath.' . PHP_SHLIB_SUFFIX);
}

> Call to undefined function bcadd() in RSA.class.php
> ---------------------------------------------------
>
>                 Key: SHINDIG-4
>                 URL: https://issues.apache.org/jira/browse/SHINDIG-4
>             Project: Shindig
>          Issue Type: Bug
>         Environment: Linux
>            Reporter: Martin Webb
>
> Testing index.php results in the error:
> Call to undefined function bcadd() in /home/virtual/site68/fst/var/www/html/RSA.class.php
> I can see calls to bcadd within RSA.class.php - but no definition.
> Martin

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.