it won't work and i dunno what to do...
p.s.- i'm an experienced user so i've edited the configs. checked if php is working (it is) and now don't know what to do !!! :P help!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
What type of database are you using? It appears to be
ending in stdlib.php. The next call would be
OpenDatabase. That's where it appears to be ending. Do you
have access to /var/log/messages ?? What is your server
setup?
Potentially what is happening is that OpenDatabase gets
called. Some problem happens, so it calls ExitWiki. But,
in ExitWiki, it makes a call to CloseDatabase. If that is
in error then it will call ExitWiki, which will then exit
without printing anything. (Slight bug). But, it seems
your DB config has issues.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
In lib/dbalib.php, try deleting the '@' in front of the call to dba_open(), and see what the error message is. It's possible your version of PHP was compiled with the old DBM library support, and PhpWiki incorrectly determines which library you use. (Alternately, edit config.php and set the database type to "dbm" and see if that works.)
Steve
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I believe there is another user having the same problem as me and he's listed in the support forum
the url is http://www.topsitez.com/test/phpwiki/index.php
it won't work and i dunno what to do...
p.s.- i'm an experienced user so i've edited the configs. checked if php is working (it is) and now don't know what to do !!! :P help!
What type of database are you using? It appears to be
ending in stdlib.php. The next call would be
OpenDatabase. That's where it appears to be ending. Do you
have access to /var/log/messages ?? What is your server
setup?
Potentially what is happening is that OpenDatabase gets
called. Some problem happens, so it calls ExitWiki. But,
in ExitWiki, it makes a call to CloseDatabase. If that is
in error then it will call ExitWiki, which will then exit
without printing anything. (Slight bug). But, it seems
your DB config has issues.
In lib/dbalib.php, try deleting the '@' in front of the call to dba_open(), and see what the error message is. It's possible your version of PHP was compiled with the old DBM library support, and PhpWiki incorrectly determines which library you use. (Alternately, edit config.php and set the database type to "dbm" and see if that works.)
Steve
I'm having the same problem.
I tried changing the file lib/config.php and changing the setting for DBM_FILE_TYPE from "gdbm" to "db3", but it had no effect.
In lib/dbalib.php, I deleted the '@' in front of the call to dba_open() as you suggested. I got the following error:
Fatal error: Call to undefined function: dba_open() in /home/.quentin/sugarmountain/jaydixit.org/phpwiki/lib/dbalib.php on line 54
So you have no dba support in your php.
Either dl() it or use another database backend.
How do I do that?
> So you have no dba support in your php.
> Either dl() it or use another database backend.