Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#229 2008-02-22 17:40:59
Re: zem_contact_reborn 4.0.3.20
Well, I am not receiving the email from the form.
I can fill out the form, submit, and get the thank you note. I have even copied the same form code from another working site (4.0.5) to be safe.
As I remember correctly, you can have it work properly when working on a local server right?
Art Rogue – Fine Art Photography
Offline
#230 2008-02-22 17:44:25
Re: zem_contact_reborn 4.0.3.20
I could be wrong. I’m testing a local version of another site and it’s not kicking me emails.
Art Rogue – Fine Art Photography
Offline
#231 2008-02-22 17:55:44
Re: zem_contact_reborn 4.0.3.20
You need a properly working mail server on your local setup.
Offline
#232 2008-02-22 18:01:58
Offline
#233 2008-02-22 18:14:37
Re: zem_contact_reborn 4.0.3.20
Put the following in a file called mail.php, upload it to your webserver, then visit it with your browser. You should receive an email. If not, your mail server is not functioning properly and that’s outside the scope of this topic. None of the letters in MAMP are related to a mail server ;)
<?php mail('your_email_address@example.com', 'php mail test', 'message'); ?>
Offline
#234 2008-02-25 18:35:27
- Phlip
- Member
- Registered: 2005-03-10
- Posts: 36
Re: zem_contact_reborn 4.0.3.20
Is there a way to hide checkbox or radio btn values in the email that gets sent if they are not checked/selected?
Offline
#235 2008-02-25 18:44:05
Re: zem_contact_reborn 4.0.3.20
Not without hacking plugin code.
Offline
#236 2008-02-25 21:46:12
- seikenn
- Member
- From: Baltimore, Maryland USA
- Registered: 2007-12-16
- Posts: 10
Re: zem_contact_reborn 4.0.3.20
Just to let you know. The links to download the plugins are currently down.
Offline
#237 2008-02-25 22:02:24
Re: zem_contact_reborn 4.0.3.20
Download links are working again.
I was busy upgrading the server from Debian sarge to etch and had that didn’t go as well as I had hoped. Some interesting things I noticed. Suphp now has a config file where one can specify the docroot. Since I’m running the webserver with a modified docroot, that was an important setting. And apparently, apache1.3+php now requires a lot more memory. Had to increase the memory limit for apache processes by at least 50 percent.
Offline
#238 2008-02-26 00:36:42
- masa
- Member
- From: Asturias, Spain
- Registered: 2005-11-25
- Posts: 1,091
Re: zem_contact_reborn 4.0.3.20
mattmikulla wrote:
I’m using MAMP on the mac.
MAMP Pro?
Not quite sure, but I think only the Pro version has a working email server.
Offline
#239 2008-02-26 20:42:15
- Phlip
- Member
- Registered: 2005-03-10
- Posts: 36
Re: zem_contact_reborn 4.0.3.20
I have a txp install running on a windows server and no emails are working. I showed the tech support the FAQ about improperly configured php on windows servers. They got back to me with this…
… In order not to share these limits
with other customers on your server you should insert the following
string before php mail() function in your form:
ini_set(‘sendmail_from’, ‘user@domain.com’);
Is this actually something I can insert into ‘my form’? I thought this was info that needs to be edited in the php.ini file, and I don’t even have access to that. Any help is MUCH appreciated.
Phlip
Last edited by Phlip (2008-02-26 20:42:44)
Offline
#240 2008-02-26 21:05:00
Re: zem_contact_reborn 4.0.3.20
You can put that at the very beginning of the plugin code. Just edit the plugin on the plugins tab and add it before the first line.
Offline