User Basher - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T19:47:56Z http://stackoverflow.com/feeds/user/132187 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1875851/specify-includepath-directory-to-zendtranslate/1880827#1880827 0 Answer by Basher for Specify include_path directory to Zend_Translate? Basher 2009-12-10T12:58:52Z 2009-12-10T12:58:52Z <p>You'll need to define the application path somewhere. If you don't want to set an absolute path, you'll need to set a relative path. Take this dir structure for example:</p> <pre><code>/application/ /application/i18n/ /public_html/ /public_html/index.php </code></pre> <p>The application path in this case would be:</p> <pre><code>define('APPLICATION_PATH', '../application'); </code></pre> <p>And you can use it like this:</p> <pre><code>Zend_Translate( 'gettext', APPLICATION_PATH . '/i18n', 'en' ); </code></pre> <p>Hope that helps.</p> http://stackoverflow.com/questions/1094137/zend-mail-gmail-smtp/1095354#1095354 0 Answer by Basher for Zend Mail Gmail SMTP Basher 2009-07-07T23:25:07Z 2009-07-07T23:25:07Z <p>Try setting ssl:// as prefix for the hostname and use 465 as port.</p> http://stackoverflow.com/questions/306013/php-form-not-showing-up-in-recipients-mailbox/1077429#1077429 0 Answer by Basher for PHP Form not showing up in recipient's mailbox Basher 2009-07-03T01:15:52Z 2009-07-03T01:15:52Z <p>The From header line is not correct. There is text outside of the quotes:</p> <pre><code>From: "{name}" {phone} &lt;{email}&gt; &lt;{message}&gt; </code></pre> <p>And what's the &lt;{message}> doing there. The only correct format would be:</p> <pre><code>From: "{name} {phone}" &lt;{email}&gt; </code></pre> <p>You can't use the message placeholder there because it contains new lines and that will break the mail header.</p> http://stackoverflow.com/questions/971565/php-form-sending-information-to-limbo/1077408#1077408 0 Answer by Basher for PHP Form Sending Information to Limbo! Basher 2009-07-03T01:03:58Z 2009-07-03T01:03:58Z <p>You should make sure that the e-mail addresses in the mail template mail.tpl.txt have the correct format. E-mail addresses should be in angle brackes:</p> <pre><code>From: &lt;visitor@example.com&gt; </code></pre> <p>If you're using the fields firstname and lastname, they need to be in quotes:</p> <pre><code>From: "{firstname} {lastname}" &lt;vistor@example.com&gt; </code></pre> <p>Other possibilities, why the script won't send e-mails: Windows server with no MTA. Mails get caught by a spam filter somewhere on the way.</p> <p>You should test if the server can even send e-mails:</p> <pre><code>&lt;?php mail('your-email@example.com', 'Test-Subject', 'Test-Message'); ?&gt; </code></pre>