1
Hello.
I am not sure if this is the right place to post my problem, it's about an upgrade issue and not an installation problem..
I installed XOOPS 13.2 locally, on PHP4, mySQL 4 (I think), Abyss Webserver 1.2.3. Installation was ok.
I try to update one table, here is the code (the file is in install folder):
include_once '../mainfile.php';
include_once './class/dbmanager.php';
$dbm = new db_manager;
if($dbm->isConnectable()) {
echo "ok
";
}
else {
echo "not ok
";
}
$dbm->query("select * from xoops_newblocks where title = 'Language selection'");
$dbm->query("UPDATE xoops_newblocks SET title = 'mumu' WHERE title = 'Language selection'");
.
I get the "ok" to connection, I get true on the first query but the second one returns false. mysql_error() return empty string. mysql_errno() return 0. The table does not get update.
XOOPS is running normally, I can submit news, modify settings, so it seems that my overall settings are ok, I have access to my database.
Any ideas?
Thank you.
Cosmin