Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Ravens PHP Scripts And Web Hosting Forum Index -> phpnuke 7.6
Author Message
tangoman
Involved
Involved



Joined: Aug 06, 2005
Posts: 301

PostPosted: Thu Aug 11, 2005 6:22 am Reply with quote

Greetings all,

I am running PHPNuke 7.6 with patch 3.0.

Wen I try to test the 'Feedback Form', I receive the following error:


ERROR: Please enter your e-mail address!


But I have entered all 3 required pieces of information, My name, e-mail address and message and still this error occurs.

Whats the solution?
 
View user's profile Send private message
kguske
Site Admin



Joined: Jun 04, 2004
Posts: 6433

PostPosted: Thu Aug 11, 2005 10:02 am Reply with quote

I use the Contact_Plus module from NukeStyles.com. Much better than feedback, but if you don't want to install this addon, email the /modules/Feedback/index.php and I'll have a look.

_________________
I search, therefore I exist...
nukeSEO - nukeFEED - nukePIE - nukeSPAM - nukeWYSIWYG
 
View user's profile Send private message
technocrat
Life Cycles Becoming CPU Cycles



Joined: Jul 07, 2005
Posts: 511

PostPosted: Thu Aug 11, 2005 10:46 am Reply with quote

[ Only registered users can see links on this board! Get registered or login! ]

_________________
Nuke-Evolution
phpBB-Evolution / phpBB-Evolution Blog 
View user's profile Send private message
kguske







PostPosted: Thu Aug 11, 2005 11:15 am Reply with quote

Thanks for the link, Technocrat!
 
technocrat







PostPosted: Thu Aug 11, 2005 11:16 am Reply with quote

NP
 
tangoman







PostPosted: Thu Aug 11, 2005 11:41 am Reply with quote

technocrat wrote:
http://www.nukefixes.com/ftopic-1594-0-days0-orderasc-enter.html



Hi technocrat,

What is the code featured on the link you provided?

Is the code you linked to the actual code that needs replacing or the code that must be used instead of some current code?

If this is the replacement code what does it do?...I assume it allows both anonymous users AND registered users to send feedback?
 
technocrat







PostPosted: Thu Aug 11, 2005 11:50 am Reply with quote

The code basically removes the code that blanks the user's email if it cannot decode the user. So even if you entered one if it doesnt detect who you are it blanks it (for some reason).

All you need to do what is stated by Evaders. That should in theory fix the problem.
 
tangoman







PostPosted: Thu Aug 11, 2005 12:10 pm Reply with quote

OK technocrat...So I have changed the code...Well, it is a case of simply deleting the code except for one ' } '

As a non-registered/Anonymouse user, this did stop me receiving the error message, asking me for my e-mail address. However, I now note that I am not receiving the e-mails anywhere. I assume that when you click send, the message should be sent to the webmaster/admin e-mail address.

Any ideas?
 
kguske







PostPosted: Thu Aug 11, 2005 12:12 pm Reply with quote

It should be sent to the admin email address defined in your admin, preferences.
 
tangoman







PostPosted: Thu Aug 11, 2005 12:23 pm Reply with quote

In preferences I have 'Administrator Email:' defined, but in the 'Mail New Stories to Admin' section, 'Notify new submissions by email?' is set to 'No' and not configured correctly'. Is that the problem? Does 'Notify new submissions by email?' need to be set to 'Yes' and the rest configured?...I thought that the'Mail New Stories to Admin' section was specifically for when people use the 'Submit News' option, not the 'Feedback Form'.

Please advise me.
 
kguske







PostPosted: Thu Aug 11, 2005 12:24 pm Reply with quote

You are correct: the Notify new submissions by email has nothing to do with Feedback.
 
tangoman







PostPosted: Thu Aug 11, 2005 12:30 pm Reply with quote

Then I still have a problem and am not receiving messages submitted via the 'Feedback Form'.
 
technocrat







PostPosted: Thu Aug 11, 2005 12:33 pm Reply with quote

Try adding global $adminmail;
 
tangoman







PostPosted: Thu Aug 11, 2005 12:35 pm Reply with quote

Are you suggesting to add the code:

global $adminmail;

or

$adminmail;

And where in the existing code do I add it?
 
technocrat







PostPosted: Thu Aug 11, 2005 12:37 pm Reply with quote

Find:
Code:
$to = $adminmail;


Before add:
Code:
global $adminmail;
 
tangoman







PostPosted: Thu Aug 11, 2005 12:43 pm Reply with quote

I am still having no joy.

Just to confirm, I am running PHPNuke 7.6 with patch 3.0.
 
kguske







PostPosted: Thu Aug 11, 2005 12:48 pm Reply with quote

Can you confirm whether you are receiving any emails from PHP-Nuke?
 
tangoman







PostPosted: Thu Aug 11, 2005 12:50 pm Reply with quote

I have just started building the site, hence I am curently the only registed user.

If I send a Newsletter, I receive it without any problems.
 
technocrat







PostPosted: Thu Aug 11, 2005 12:52 pm Reply with quote

Well you can check where the mail is going by:

Find:
$to = $adminmail;

Before add
var_dump($adminmail);
die();

Once you run it you will see what the variable is set too.
 
tangoman







PostPosted: Thu Aug 11, 2005 1:00 pm Reply with quote

Technocrat, I have not yet proceeded with the advise in your last posting, (stamped 'Fri Aug 12, 2005 4:52 am').

Yesterday I was receving the Newsletter perfectly, I have just checked again and it appears that this function has now stopped working too.
 
kguske







PostPosted: Thu Aug 11, 2005 1:05 pm Reply with quote

That's why I wanted to confirm it, tangoman. The feedback email is pretty straightforward, though it uses the PHP mail() function. I was concerned this might be blocked by spam filters either on your server or on your PC. Try sending it to a Yahoo address - nothing gets blocked there, it seems.
 
tangoman







PostPosted: Thu Aug 11, 2005 1:09 pm Reply with quote

I have tried all this....I think I have to first find out why the 'Newsletter' function is now not working. Whatever is stopping those messages reaching me is clearly the problem I am now experiencing with receiving the 'Feedback Forum' messages
 
kguske







PostPosted: Thu Aug 11, 2005 1:11 pm Reply with quote

Check your spam box on the server and / or your email client. Check with your host to see if there are any delays with email.
 
tangoman







PostPosted: Thu Aug 11, 2005 1:16 pm Reply with quote

It is nothing as obvious as all that. I have not changed my mailbox setting since succesfully testing the Newsletter function yesterday and receiving the Newsletter messages without any problems.

I have jst checked the bulk/junk mail options though and they are off, as I suspected.

Additionally, I just sent an e-mail directly to the e-mail address registed in the 'Preferences' section and the message was received instantly.
 
kguske







PostPosted: Thu Aug 11, 2005 1:20 pm Reply with quote

Does the email in the preferences section exist on the same server as Nuke?
 
Display posts from previous:       
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Ravens PHP Scripts And Web Hosting Forum Index -> phpnuke 7.6

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©