halojoy wrote:One called PMS-CVS.zip, which is a version of pms-2
One called PMSys3-CVS.zip, which is a new unreleased version pms-3
Both these are probably from March 2004
See this CVS directory:
http://pmsys.sourceforge.net/cvs/
First I tried to install PMSys3-CVS.zip, but this was impossible ... dont even try!
I managed to install PMS-CVS.zip.
But I had to disable one thing in database file: includes/mysql.php.
Has got this check
<?php
function check_query ($query) {
// check for hackers
if (stristr($query, ";")) {
echo "<b>BAD HACKER!!</b> No database cracking for you today!";
exit;
}
return $query;
}
?>
... and because install CREATE TABLE has got this
<?php
PRIMARY KEY (`ip`),
UNIQUE KEY `ip` (`ip`)
) TYPE=MyISAM;";
?>
MyISAM; .... has got a semicolon
made me a BAD HACKER!!
Can anybody explain this?
And is it possible to create table WITHOUT ; semicolon?
If you want to test my DEMO of this Private Message System goto:
http://okay.mine.nu/pmsys2cvs/index.php
Installing instructions:
http://okay.mine.nu/pmsys2cvs/docs/readme.txt
🙂