r63b login/ sign up error
Deprecated: mysql_pconnect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in C:\xampp\htdocs\app\class.engine.php on line 48
Field 'position' doesn't have a default value
how do i get past this error, what query should i run in the database? thanks
Re: r63b login/ sign up error
Long story;
The CMS is using old mysql functions to connect and retrieve data from the database, which is deprecated (they will be removed in future versions of PHP). I really recommend you to find a CMS that uses proper MySQLi or PDO support.
If it is not just a blank page with the error add this code into the page :
Quote:
<?php
error_reporting(0);
?>
It hides all the errors :P