|
From: Hr. J. L. <lo...@lw...> - 2008-11-11 16:01:10
|
Hi Monika, It seems that the dbase.so is not part of the ubuntu package of php5. So the usual way would be to compile php manually using --enable-dbase. Another possibility is to use a self built or downloaded dbase.so for your phpversion and to store it in your extension dir, e.g:: /usr/lib/php5/20060613+lfs/dbase.so Then add: extension=dbase.so" to your php.ini: /etc/php5/apache2/php.ini /etc/php5/cli/php.ini and restart your webserver with 'apachectl restart' or 'etc/init.d/apache2 force-reload'. To built the dbase.so you could download the official php package(php.net) and run: ./configure --prefix=/usr --enable-dbase=shared && make To download a pre-build dbase.so you might use rpmseek.com. In both cases, be careful to use exactly your php version. In doubt create a file with that content: <?php phpinfo(); ?> and view it in your browser to get your php version. You are not the first one who has that problem, so that link might be useful, too: http://www.google.de/search?q=php+dbase+ubuntu Hope that helps Johannes Am 11 Nov 2008 um 10:27 hat Monika Govindaraj geschrieben: > hi all, > I have installed mapstorer -0.9 version in kubuntu Operating system. In the layer, edit option > shows the following error: > Fatal error: Call to undefined function dbase_open() in /var/www/mapstorer/details/layer.php on > line 223 > > i have installed all the dependency package using apt-get install method. So any other option > to include dbase with php using apt-get method form.... > > Thanks in Advance. > > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Mapstorer-users mailing list > Map...@li... > https://lists.sourceforge.net/lists/listinfo/mapstorer-users |