Hello Folks
I tryed first to update from the 0.1-20051007 to 0.1-20051021 it resulted an error 500 first.
I fixed this problem due deleting the .htaccess file, because my server disallow some commands over .htaccess files...
Today i deleted the wole stuff and setup new.
I Fixed the 500 Server Error by editing the main .htaccess file
--snip oldfile- php_flag display_errors On php_value session.gc_maxlifetime 21600 php_value session.gc_divisor 500 php_value upload_max_filesize 2m
<FilesMatch "(.inc|~)$|^_"> Order allow,deny Deny from all
</FilesMatch>
Order deny,allow Allow from all --/snip oldfile--
--snip newfile-- <FilesMatch "(.inc|~)$|^_"> Order allow,deny Deny from all
</FilesMatch>
Order deny,allow Allow from all --/snip newfile--
Now i'm stuck by this error...
DB Error in /webmail2/program/include/rcube_db.inc (63): DB Error: not found Fatal error: Call to undefined method DB_Error::query() in /webmail2/program/include/rcube_db.inc on line 124
Does anyone know what causes this error? The last version (20051007) of roundcube worked well on my server.
Greetings Bastian
Hello,
On 10/22/05, Bastian Widmer bastian.widmer@gmail.com wrote:
Now i'm stuck by this error...
DB Error in /webmail2/program/include/rcube_db.inc (63): DB Error: not found Fatal error: Call to undefined method DB_Error::query() in /webmail2/program/include/rcube_db.inc on line 124
"not found" can mean a table or a field in a table. Probably a typo? Try to output, "getDebugInfo()" instead of "getMessage()", it's more verbose. Which means, if your DB result is called "$foo", use: "echo $foo->getDebugInfo();".
Regarding the other error, that's probably caused by insufficient error checking. The error occurred, but instead of exiting (and throwing an exception), the code goes on to use the result (which is none, but an error object).
Till