I am fairly new to php-fusion. I tend to be a log watcher and have noticed a few undefined variables. I am not a programmer, but think I have corrected the problems.
All of these are in register.php:
First one is "Undefined variable: user_year in /home/XXXXXXX/public_html/register.php on line 222".
After I fixed that one, got one that said user_day.
Fixed that and then got user_month.
Lastly in that file I was also getting "Undefined index: user_sig in /home/XXXXXX/public_html/register.php on line 261"
To correct those errors I put:
$user_year = "";
$user_month = "";
$user_day = "";
$userdata['user_sig']= "";
after this line:
if (iMEMBER) fallback("index.php"
;
There are more errors but I believe that file is fixed. Ill reply to this message when I fix more of the errors.