another email and news letter problem

Started by Jed C, November 20, 2009, 02:43:15 AM

Previous topic - Next topic

Jed C

i have read through the recent problems some members are having but nothing seem to apply to me

after upgrading to RC2
when i send news letters my members do not receive them
if i type an email address in the box under advanced (which is empty) then that email receives the news letter but no member do

also when new member joins they are not getting activation emails although if i set the forum up so a new member gets instant access admins receive email telling them a new member has joined

i have checked the settings and its set to PHP although i have tried SMTP with the same results

the only error i get in the error log points to when i go into the Admin Registration Setting
http://myforum.com/index.php?action=admin;area=regcenter;sa=settings
Apply Filter: Only show the errors with the same message
8: Undefined index: coppaType
Apply Filter: Only show the errors from this file
File: /my forum.com/Sources/ManageServer.php Line: 1802

==>1802: 
'value' => $config_var[0] == 'select' ? $modSettings[$config_var[1]] : (isset($modSettings[$config_var[1]]) ? htmlspecialchars($modSettings[$config_var[1]]) : (in_array($config_var[0], array('int', 'float')) ? 0 : '')),


these are the mods installed
Quote
1.     Aeva ~ Auto-Embed Video & Audio      7.0      
2.    Sitemap                                                     2.1.0    
3.    Users Online Today                                  1.5.5    
4.    Welcome Topic Mod                              2.0.2    
5.    Activity_Bar                                            1.0.1.2    
6.    Birthday Posts                                          0.11.2 Beta    
7.    RSS Feed Poster                                    2.0.1    
8.    SimplePortal                                        2.3.1


i have also run THIS script
and got the following results

QuoteFirst Mail Results: We sent the email
Secon Mail Results: We sent the email
Third Results:
Notice: Undefined variable: mail in /my forum.com/email.php on line 32

Notice: Undefined offset: 106 in /my forum.com/email.php on line 32

Notice: Undefined offset: 152 in /my forum.com/email.php on line 32

Notice: Undefined offset: 164 in /my forum.com/email.php on line 32

Notice: Undefined offset: 153 in /my forum.com/email.php on line 32
We failed to send the email
Now Check your inbox, spam or whereever for your mail

any help would be appreciated  ;)

Jed C

i know you don't like bumps but hey i need help  ;)

butchs

I have had activation message problems too.  Some spam filter seem to stop it.  I am thinking about re-writing it.

I think it is a bug in a mod.  Try uninstalling birthday posts (and other mods one at a time), reset your forum and browser cache and see if you can send news to yourself.
I have been truly inspired by the SUGGESTIONS as I sit on my throne and contemplate the wisdom imposed upon me.

Kill Em All



My Site: KEAGaming.com

Manual Installation of Mods
Prevent Spam and Forum Attacks
Please do not PM or email me for support unless offered, help should be publicly displayed to others.

Norv

About the CoppaType error: this is actually a bug in SMF 2.0 RC2. In order to have it solved, do this (ManageServer.php):
Code (find) Select

'value' => $config_var[0] == 'select' ? $modSettings[$config_var[1]] : (isset($modSettings[$config_var[1]]) ? htmlspecialchars($modSettings[$config_var[1]]) : (in_array($config_var[0], array('int', 'float')) ? 0 : '')),

Code (replace) Select

'value' => isset($modSettings[$config_var[1]]) ? ($config_var[0] == 'select' ? $modSettings[$config_var[1]] : htmlspecialchars($modSettings[$config_var[1]])) : (in_array($config_var[0], array('int', 'float')) ? 0 : ''),

To-do lists are for deferral. The more things you write down the later they're done... until you have 100s of lists of things you don't do.

File a security report | Developers' Blog | Bug Tracker


Also known as Norv on D* | Norv N. on G+ | Norv on Github

Jed C

tried that Norv will let you know if it works  ;)

aka Fusion

Was there an update on this .....ie did it work?

GazOutEast

Bump for the fix - need to know if it works - I am getting the same error as the OP
I have 20:20 vision - I can see anything bigger than 20" x 20"

Norv

Did you try the fix?

Make a copy of your file, just in case, then do the modification as above, and reupload your file. You'll see if it works.
To-do lists are for deferral. The more things you write down the later they're done... until you have 100s of lists of things you don't do.

File a security report | Developers' Blog | Bug Tracker


Also known as Norv on D* | Norv N. on G+ | Norv on Github

GazOutEast

Thanks Norv, but following the advice elsewhere on SMF, I simply disabled OpenID and the problem stopped - I'll wait until it's fixed in a future release as it's not really essential on my site.

Gaz
I have 20:20 vision - I can see anything bigger than 20" x 20"

JimM

Were you able to try this Jed C?  Is this issue solved or do you still require assistance?
Jim "JimM" Moore
Former Support Specialist

oOo--STAR--oOo

Hi Norv i was experiancing the same error.. I tried the method u have put down there.. and so far so good.

Eactly what is it changing..
Will it effect anythng else on the forum?

Thanks for the fix worked a treat..

I tested making a user
signing in
and no error. :) Thanks
You can't fool a sufficiently talented fool.

http://www.uniquez-home.com
In Design Phase!

Mods I am designing,  No refresh Collapse Categories , Poll Redesign , Pure CSS Breadcrumb , Profile Statuses, Profile Views.

Norv

The fix shouldn't have any side effects. It simply makes sure that it checks before trying to use configuration options which were not set. It was a little bug in RC2, currently solved in svn as well if I remember correctly.
To-do lists are for deferral. The more things you write down the later they're done... until you have 100s of lists of things you don't do.

File a security report | Developers' Blog | Bug Tracker


Also known as Norv on D* | Norv N. on G+ | Norv on Github

oOo--STAR--oOo

Nice one well it works anyway.. also.. whats SVN? lol..

Is that the latest edition?

And yeah my forum is error free upto now.. still in the process of setting it up.. just undergoing some errors in it not sending the welcome email :(

Thanks nord.. I hate errors. even if it doesnt matter its still and error.
You can't fool a sufficiently talented fool.

http://www.uniquez-home.com
In Design Phase!

Mods I am designing,  No refresh Collapse Categories , Poll Redesign , Pure CSS Breadcrumb , Profile Statuses, Profile Views.

Norv

SVN is a code repository and versioning system, and it's used currently by SMF developers to keep track of the SMF code. That is, yes, I was using the word to refer to the latest (development - not released yet) version.
Please feel free to post another topic (this one doesn't seem appropriate) if you need assistance with welcome email errors.
To-do lists are for deferral. The more things you write down the later they're done... until you have 100s of lists of things you don't do.

File a security report | Developers' Blog | Bug Tracker


Also known as Norv on D* | Norv N. on G+ | Norv on Github

oOo--STAR--oOo

Thanks nov i have already done that no cure upto now :(
You can't fool a sufficiently talented fool.

http://www.uniquez-home.com
In Design Phase!

Mods I am designing,  No refresh Collapse Categories , Poll Redesign , Pure CSS Breadcrumb , Profile Statuses, Profile Views.

Advertisement: