We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Mass Mailing Problem | Forum

Nicholas Anderson
Nicholas Anderson Sep 25 '11
I don't know why but when I send out a mass mailing email, it never sends. It tells me it was sent but when I ask my users they say they never got an email. I don't even get the email.
FaceTester Leader
FaceTester Sep 25 '11
use you the internal PHP-Mailer, probably the Webspace-Provider have restrictions for that.

or use you the SMTP mailsend ?

single mails going out ?
Den Team
Den Sep 26 '11
Did you setup a cronjob for oxwall?
Jaime Pascual
Jaime Pascual Oct 1 '11
I setup a new cronjob because  mass mailing has stopped working, but not work (oxwall version 1.2.4). In my old version 1.1.1 mass mailing works fine. 
Thank you
Den Team
Den Oct 5 '11
Check your cronjob. 
Jaime Pascual
Jaime Pascual Oct 6 '11

Quote from Addenster Check your cronjob. 

Don't work. This is my cronjob and mass mailing don't work. In my old version 1.1.1 works fine.
Thank you for your help
FaceTester Leader
FaceTester Oct 7 '11
try
/usr/local/bin/php  -f /home/xxxx/yyyy/ow_cron/run.php
the parameter "-f" is a execution parameter for the PHP-Parser

greets
FaceT
The Forum post is edited by FaceTester Oct 7 '11
Jaime Pascual
Jaime Pascual Oct 10 '11
Thank you Facetester but parameter "-f" not work.
I have a drupal istallation in the same server, but in other folder. Maybe drupal interfere on cron job? 
Den Team
Den Oct 11 '11
The best way to check that cronjob works well is it run it'c command via SSH. Would you do it?
Jaime Pascual
Jaime Pascual Oct 11 '11
Thank you Addenster. How can I do this?
FaceTester Leader
FaceTester Oct 11 '11
SSH = terminal login to the webspace with PUTTY SSH-Programm
(look in Webspace manual if you can do this)



-- -- -- -- -- -- -- --

second try is that you -add a path- in the .htaccess file for the Rewrite function.
it is possible that your cron-builder work on HTTP-Request and not in system-level,
and the rewrite-function broken this request.
After -add- the line the rewrite engine don't break the http-request.

hope that was helpful

______________________________________

Options +FollowSymLinks
RewriteEngine On

RewriteCond %{REQUEST_URI} .*/http-bind
RewriteRule (.*) /http-bind [L]

RewriteCond %{REQUEST_URI} !^/index.html
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} !/ow_updates/index.php
RewriteCond %{REQUEST_URI} !/ow_updates/
RewriteCond %{REQUEST_URI} !/ow_cron/
RewriteCond %{REQUEST_URI} !/PATH TO YOUR DRUPAL FOLDER/

RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.raw|/[^.]*)$  [NC]

RewriteRule (.*) index.php
______________________________________
The Forum post is edited by FaceTester Oct 11 '11
Den Team
Den Nov 21 '11
Topic was moved from Bug reports and troubleshooting.