I'm still very new at hacking and I'm have a problem with this
################################################## ##########
From the MySQL prompt execute the following statement:
alter table user add miserable smallint(5) unsigned DEFAULT 0 NOT NULL;
################################################## ##########
I Create a new ,php file in your forums directory and copy the following lines in there. Save the file, execute it one time
PHP:
<?php
error_reporting(7);
require("./global.php");
$DB_site->query("alter table user add miserable smallint(5) unsigned DEFAULT 0 NOT NULL;");
?>
***and I got this error message.
Warning: main(./global.php) [function.main]: failed to create stream: No such file or directory in /www/n/nOpenworldz/htdocs/miserable.php on line 16
What do I do from here?
|