How to solve “Call to undefined function dbase_open() ” error in windows

前端 未结 4 1915
北恋
北恋 2020-12-21 04:51

Hi i want to load DBF file to mysql, am using xampp,php version 5.5.6

i had write the below code,

But am getting Error ---

Fatal error

相关标签:
4条回答
  • 2020-12-21 05:32

    You need to check in PHP directory is file php_gmp.dll enable and if it does, then in php.ini add this string "extension=php_gmp.dll" in extensions section.

    If file does not exist then add it to php in apache - http://www.dll4free.com/php_gmp.dll.html

    May be Open server will be better them XAMPP - http://translate.google.ru/translate?sl=ru&tl=en&js=n&prev=_t&hl=ru&ie=UTF-8&u=http%3A%2F%2Fopen-server.ru%2Fdownload.html&act=url It have many PHP versions, mySQL, PostgresQL, MongoDB, memcache, administration tools, regular updates, english support in forum and free!

    0 讨论(0)
  • 2020-12-21 05:48

    dBase is moved to PECL for now

    yum install php-pear
    pecl install dbase
    

    After successful execution, you'll need to add "extension=dbase.so" to your php.ini

    Or create dbase.ini in /etc/php.d with

    extension=dbase.so
    

    fliber.net uses this

    0 讨论(0)
  • 2020-12-21 05:51

    How to on Ubuntu (15.04):

    1) install php5-dev

    sudo apt-get install php5-dev
    

    2) install dbase via pecl

    sudo pecl install dbase
    

    3) load extension

    3.1) create dbase.ini file in /etc/php5/mods-available/ directory with this content:

    extension=dbase.so
    

    3.2) create sym link in /etc/php5/apache2/conf.d/ directory:

    sudo ln -s ../../mods-available/dbase.ini 20-dbase.ini
    

    4) restart apache

    0 讨论(0)
  • 2020-12-21 05:51

    check in your xampp/php/ext folder for php_gmp.dll ,if the extension is there add this extension=php_gmp.dll to php.ini file in xampp/php/php.ini. else add this dll to xampp/php/ext and do the above step restart your apache server

    0 讨论(0)
提交回复
热议问题