E-Mail contact form (1.2.1) works only when logged in
Posted: Tue 31. May 2005, 13:59
Hello,
it was already discussed but still I couldn't find an answer to this question. My E-Mail contact form works very well when I'm simultaneously logged in as admin in another window. After having logged out (the standard situation for every other user), nothing happens. No direct feedback (error or success), no sending of the form data.
Does anyone have an idea, how to solve this problem?
My E-Mail contact form looks like this:

My SMTP settings are:
Thank you in advance, regards
Harry
it was already discussed but still I couldn't find an answer to this question. My E-Mail contact form works very well when I'm simultaneously logged in as admin in another window. After having logged out (the standard situation for every other user), nothing happens. No direct feedback (error or success), no sending of the form data.
Does anyone have an idea, how to solve this problem?
My E-Mail contact form looks like this:

My SMTP settings are:
Code: Select all
// smtp values
$phpwcms['SMTP_FROM_EMAIL'] = 'int.service@woodhome.info'; // reply/from email address
$phpwcms['SMTP_FROM_NAME'] = 'Woodhome Service'; // reply/from name
$phpwcms['SMTP_HOST'] = 'localhost'; // SMTP server (host/IP)
$phpwcms['SMTP_PORT'] = 25; // SMTP-Server port (default 25)
$phpwcms['SMTP_MAILER'] = 'mail'; // default phpMailer: smtp, mail (default), sendmail
$phpwcms['SMTP_AUTH'] = 0; // sets SMTP_AUTH to ON/OFF
$phpwcms['SMTP_USER'] = '<myUsername>'; // default SMTP login (user) name
$phpwcms['SMTP_PASS'] = '<myPassword>'; // default SMTP password
Harry