HomeHelpTrac

Ignore:
Timestamp:
11/19/09 23:07:12 (3 years ago)
Author:
Andrey Prikaznov
Message:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/modules/boonex/open_social/install/installer.php

    r13183 r13276  
    3737        $iErrors += (function_exists('mysqli_init') && extension_loaded('mysqli')) ? 0 : 1; 
    3838        $iErrors += (function_exists('json_decode') && extension_loaded('json')) ? 0 : 1; 
     39        $iErrors += (function_exists('openssl_open') && extension_loaded('openssl')) ? 0 : 1; 
    3940        $iErrors += (function_exists('shell_exec')) ? 0 : 1; 
    4041        return array('code' => !$iErrors ? BX_DOL_INSTALLER_SUCCESS : BX_DOL_INSTALLER_FAILED, 'content' => ''); 
     
    4546            <div style="border:1px solid red; padding:10px;"> 
    4647 
    47                 Opensocial requres PHP mysqli and JSON extensions. Please enable it first then proceed with installation.  
     48                Opensocial requres PHP OpenSSL, mysqli and JSON extensions. Please enable it first then proceed with installation.  
    4849 
    4950                <br /><br /> 
     51 
     52                To use PHP`s OpenSSL support you must also compile PHP --with-openssl[=DIR].  
     53 
     54                <br /> 
     55 
     56                If you would like to install the mysql extension along with the mysqli extension you have to use the same client library to avoid any conflicts.  
     57 
     58                <br /> 
    5059 
    5160                To install the mysqli extension for PHP, use the  
Note: See TracChangeset for help on using the changeset viewer.