hi i'm use SMF 1.1 RC1 and today i see on error log give me err like this
8: Undefined index: message
File: /var/www/Sources/Post.php
Line: 1233
can help me
It's an error in 1.1 RC1 and has been fixed for RC2.
-JayBachatero
give me err like this again
8: Use of undefined constant Chat - assumed 'Chat'
File: /var/www/Themes/GreenSense/GreenSense/index.template.php
Line: 590
This is my line 590
// Otherwise, they might want to [logout]...
else
echo '
<a href="', $GLOBALS['boardurl'], '/chat/flashchat.php">', Chat, '</a> |
<a href="', $scripturl, '?action=logout;sesc=', $context['session_id'], '">', $txt[108], '</a>';
}
Ok this line is your error
// Otherwise, they might want to [logout]...
else
echo '
<a href="', $GLOBALS['boardurl'], '/chat/flashchat.php">', Chat, '</a> |
<a href="', $scripturl, '?action=logout;sesc=', $context['session_id'], '">', $txt[108], '</a>';
}
Change it to
// Otherwise, they might want to [logout]...
else
echo '
<a href="', $GLOBALS['boardurl'], '/chat/flashchat.php">Chat</a> |
<a href="', $scripturl, '?action=logout;sesc=', $context['session_id'], '">', $txt[108], '</a>';
}
', ,' is used if its to include a variable inside an echo. See the color difference?
-JayBachatero
Thanks ;D
You're welcome.
-JayBachatero