This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

User Register problem


avatar
LRACMS 0
From: -
User Register problem

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

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


1 Re: User Register problem
avatar
OP 0
From: -
User Register problem

Thanks Philipp, that seems to solve the problems.

- Louis Andrews
1 Re: User Register problem
avatar
Administrator
1340
From: Vienna, Austria
User Register problem

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 Hushed Face

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"; 

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.