MyBB Community Forums

Full Version: change the Registration agreement
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how do i edit the registration agreement? i spent all morning looking for it.

Thank you
Tony
Its in the member.lang.php file

$l['agreement_1'] = "Whilst we attempt to edit or remove any messages containing inappropriate, sexually orientated, abusive, hateful, slanderous, or threatening material that could be considered invasive of a persons privacy, or which otherwise violate any kind of law, it is impossible for us to review every message posted on this discussion system. For this reason you acknowledge that all messages posted on this discussion system express the views and opinions of the original message author and not necessarily the views of this bulletin board. Therefore we take no responsibility and cannot be held liable for any messages posted. We do not vouch for or warrant the accuracy and completeness of every message.";
$l['agreement_2'] = "By registering on this discussion system you agree that you will not post any material which is knowingly false, inaccurate, abusive, hateful, harassing, sexually orientated, threatening or invasive of a person's privacy, or any other material which may violate any applicable laws.";
$l['agreement_3'] = "Failure to comply with these rules may result in the termination of your account, account suspension, or permanent ban of access to these forums. Your IP Address is recorded with each post you make on this discussion system and is retrievable by the forum staff if need-be. You agree that we have the ability and right to remove, edit, or lock any account or message at any time should it be seen fit. You also agree that any information you enter on this discussion system is stored in a database, and that \"cookies\" are stored on your computer to save your login information.";
$l['agreement_4'] = "Any information you provide on these forums will not be disclosed to any third party without your complete consent, although the staff cannot be held liable for any hacking attempt in which your data is compromised.";
$l['agreement_5'] = "By continuing with the sign up process you agree to the above rules and any others that the Administrator specifies.";
In inc/languages/english/member.lang.php look for:

$l['agreement_1'] = "Whilst we attempt to edit or remove any messages containing inappropriate, sexually orientated, abusive, hateful, slanderous, or threatening material that could be considered invasive of a persons privacy, or which otherwise violate any kind of law, it is impossible for us to review every message posted on this discussion system. For this reason you acknowledge that all messages posted on this discussion system express the views and opinions of the original message author and not necessarily the views of this bulletin board. Therefore we take no responsibility and cannot be held liable for any messages posted. We do not vouch for or warrant the accuracy and completeness of every message.";
$l['agreement_2'] = "By registering on this discussion system you agree that you will not post any material which is knowingly false, inaccurate, abusive, hateful, harassing, sexually orientated, threatening or invasive of a person's privacy, or any other material which may violate any applicable laws.";
$l['agreement_3'] = "Failure to comply with these rules may result in the termination of your account, account suspension, or permanent ban of access to these forums. Your IP Address is recorded with each post you make on this discussion system and is retrievable by the forum staff if need-be. You agree that we have the ability and right to remove, edit, or lock any account or message at any time should it be seen fit. You also agree that any information you enter on this discussion system is stored in a database, and that \"cookies\" are stored on your computer to save your login information.";
$l['agreement_4'] = "Any information you provide on these forums will not be disclosed to any third party without your complete consent, although the staff cannot be held liable for any hacking attempt in which your data is compromised.";
$l['agreement_5'] = "By continuing with the sign up process you agree to the above rules and any others that the Administrator specifies.";

Edit: too late Sad
Thank you LeX- ... an Destroyer
It's recommended that you use the ACP to modify language variables.

ACP -> Language Packs -> Manage -> *Language Name* -> Edit Language Variables -> Go -> member.lang.php

The registration agreement is stored in the variables agreement_1 to agreement_5.
Musicalmidget Wrote:It's recommended that you use the ACP to modify language variables.

ACP -> Language Packs -> Manage -> *Language Name* -> Edit Language Variables -> Go -> member.lang.php

The registration agreement is stored in the variables agreement_1 to agreement_5.

You will have to CHMOD the language files to 666 so that they're writable by the webserver (if you haven't done so already). Or else there'll be a warning on the editor.
I thought I should add to this thread because it's basically the same problem. I want to just skip the terms of use all together and go directly to the register page. My feeling is that people will know what's okay to post and don't need an agreement. How do I delete the registration agreement completely?
bb2 Wrote:How do I delete the registration agreement completely?
Open member.php in your editor and find:
	{
		$plugins->run_hooks("member_register_agreement");

		eval("\$agreement = \"".$templates->get("member_register_agreement")."\";");
		output_page($agreement);
	}
	else

Replace with:
	//{
		//$plugins->run_hooks("member_register_agreement");

		//eval("\$agreement = \"".$templates->get("member_register_agreement")."\";");
		//output_page($agreement);
	//}
	//else

After this, when a user will register, will not see agreement page.
In case you want to reactivate this agreement, just remove // from this lines (268-274 if you have default member.php file - in MyBB 1.2.12).