User Register problem
LRACMS 0
From: -
From: -
Notice
This topic is archived. New comments cannot be posted and votes cannot be cast.Responses to this topic
1 Re: User Register problem
LRACMS
OP
0
From: -
From: -
User Register problem
Thanks Philipp, that seems to solve the problems.
- Louis Andrews
Thanks Philipp, that seems to solve the problems.
- Louis Andrews
1 Re: User Register problem
Philipp
From: Vienna, Austria
Administrator
1340From: Vienna, Austria
User Register problem
1) To remove this feature
Remove the following from register.php:
and from the template register:
2.) To increase the font size instead:
Change the following in the template register:
to
I see. There is a small typo in mod_mail.php of Storyteller 1.3
Find in mod_mail.php the following line:
and replace it with:
Originally posted by LRACMS
1. I sent out a notice of the new site to about 150 people and a lot of them were unable to register because they could not enter the security code correctly since it is in such a small font size. Is there any way to disable (remove) this feature entirely? If not, how can the font sizes be increased?
1) To remove this feature
Remove the following from register.php:
if ($scode != $sout) {
echo GetTemplate("register_error_scode");
FooterBlock();
exit;
}
and from the template register:
<tr>
<td bgcolor="#ffffff">
<font face="Arial" size="2">
<b>Enter Security Code:</b>
<img src="https://www.contentteller.com/scode.php" border="1">
<img src="https://www.contentteller.com/scode.php" border="1">
<img src="https://www.contentteller.com/scode.php?in=2" border="1">
<img src="https://www.contentteller.com/scode.php?in=3" border="1">
<img src="https://www.contentteller.com/scode.php?in=4" border="1">
</font>
</td>
<td bgcolor="#ffffff">
<input name="scode" size="32">
</td>
</tr>
2.) To increase the font size instead:
Change the following in the template register:
<b>Enter Security Code:</b>
<img src="https://www.contentteller.com/scode.php" border="1">
<img src="https://www.contentteller.com/scode.php" border="1">
<img src="https://www.contentteller.com/scode.php?in=2" border="1">
<img src="https://www.contentteller.com/scode.php?in=3" border="1">
<img src="https://www.contentteller.com/scode.php?in=4" border="1">
to
<b>Enter Security Code:</b><br />
<img src="https://www.contentteller.com/scode.php" width="50" hight="50" border="1">
<img src="https://www.contentteller.com/scode.php" width="50" hight="50" border="1">
<img src="https://www.contentteller.com/scode.php?in=2" width="50" hight="50" border="1">
<img src="https://www.contentteller.com/scode.php?in=3" width="50" hight="50" border="1">
<img src="https://www.contentteller.com/scode.php?in=4" width="50" hight="50" border="1">
Originally posted by LRACMS
2. Mailing list problem. We distributed a single story to our mailing list using the Send News feature. We had 38 people listed on the mailing list. The program sent 38 copies of the stories to each one (as far as I know) on the list. How do I fix this?
I see. There is a small typo in mod_mail.php of Storyteller 1.3
Find in mod_mail.php the following line:
$headers .= "MIME-Version: 1.0\r\n";
and replace it with:
$headers = "MIME-Version: 1.0\r\n";
Two problems
1. I sent out a notice of the new site to about 150 people and a lot of them were unable to register because they could not enter the security code correctly since it is in such a small font size. Is there any way to disable (remove) this feature entirely? If not, how can the font sizes be increased?
2. Mailing list problem. We distributed a single story to our mailing list using the Send News feature. We had 38 people listed on the mailing list. The program sent 38 copies of the stories to each one (as far as I know) on the list. How do I fix this?
Louis Andrews