To fix the error in your profile sector for comments,
open members.php
find line
360-362
PHP
if ($user_info['user_level'] < USER_AWAITING && $user_info['user_level'] == BANNED) {
show_error_page($lang['no_permission']);
}
Copy - paste underneath this piece of code the following line:
PHP
if (isset($HTTP_GET_VARS[URL_USER_ID]) || isset($HTTP_POST_VARS[URL_USER_ID])) {
$user_id = (isset($HTTP_POST_VARS[URL_USER_ID])) ? intval($HTTP_POST_VARS[URL_USER_ID]) : intval($HTTP_GET_VARS[URL_USER_ID]);
}
else {
$user_id = GUEST;
}
Now all members can comment the profile they want to,before you had a error witch say's member not found!!!
All credits goes to Zebaniz, thanks my friend and keep up the good work!
Regards,
Raymond alias CarpMadness
The man who said it's impossible, is alway's interupt by the man who just did.