Status messages after submitting subscription forms

julianovenecui

New Member
Sorry if if already exist something related to my question in the forum. I don't know exactly how to search about this.

After submitting these forms in the html folder, the resulting pages show a "status message" on the top. Actually everything works ok.

For example when I submit the "subscribe_single_fixed.php" form I get:
Code:
"[email protected]: 250 Ok".
When I click the confirmation link in the e-mail message, the page shows:
Code:
How can I disable these messages ?
 

stanbusk

Administrator
Staff member
It looks like your server is outputting that text. MLM doesn't, believe me. Have you asked your server support?
 

julianovenecui

New Member
Well I asked to my support, and you are right. These lines are debug messages, and come from the server.

They can be disabled setting the php_flag by editing the ".htaccess" file in the MLM directory.
For example "public_html/mlm/.htaccess",

The line:
Code:
php_flag authmail.debug ON
must be modified to
Code:
php_flag authmail.debug Off
No more debug messages.
 
Top