sto the adress should be www.domain.com/omputer labs/
the same problem is when adress is www.domain.com/omputer-labs/
how can I disable !_" !"#$%&/(()==?:;., characters in forum names...
BMR777
17-Jul-2006, 06:10 PM
Well, Derek has already said that spaces cause an error when installing forums. It's a known bug I believe. This is the first i am hearing about "-" causing problems but maybe Derek knows more about this.
For now I would if I were you make a note to your members that they cannot put those characters in their forums.
BMR777
Derek
17-Jul-2006, 06:29 PM
This should do it...
Open new_forum.php
Find:
if (empty($_POST['tos']))
{
print_error_message($lang['terms_of_service_not_checked_error']);
}
Open language/lang_english/lang_nbs_multi-forums_phpbb.php.
Find:
$lang['verify_email_message'] = 'Hello ' . $_POST['accessname'] . ',
A free phpBB forum hosting account has been created, per your request at http://' . $setting['domain'].$setting['path'] . 'new_forum.php.
A user from {ipaddress} created the account. If you did not create it, then you can simply ignore this email as the account won\'t be activated unless you click the link below.
Here are the details of the account...
Access Name: ' . $_POST['accessname'] . '
Forum Name: ' . $_POST['forumname'] . '
Forum Description: ' . $_POST['forumdescription'] . '
Forum Administrator Username: ' . $_POST['adminuser'] . '
Password: ' . $_POST['adminpass'] . '
Email: ' . $_POST['adminemail'] . '
To activate your forum, please click the link below.
http://' . $setting['domain'].$setting['path'] . 'new_forum.php?do=activate&accessname=' . $_POST['accessname'] . '&key={act_key}
' . $setting['email_signature'];
Replace With:
$lang['verify_email_message'] = 'Hello {accessname},
A free phpBB forum hosting account has been created, per your request at http://' . $setting['domain'].$setting['path'] . 'new_forum.php.
A user from {ipaddress} created the account. If you did not create it, then you can simply ignore this email as the account won\'t be activated unless you click the link below.
Here are the details of the account...
Access Name: {accessname}
Forum Name: ' . $_POST['forumname'] . '
Forum Description: ' . $_POST['forumdescription'] . '
Forum Administrator Username: ' . $_POST['adminuser'] . '
Password: ' . $_POST['adminpass'] . '
Email: ' . $_POST['adminemail'] . '
To activate your forum, please click the link below.
http://' . $setting['domain'].$setting['path'] . 'new_forum.php?do=activate&accessname={accessname}&key={act_key}
' . $setting['email_signature'];
Close and Save language/lang_english/lang_nbs_multi-forums_phpbb.php.