Results 1 to 7 of 7

Thread: Mass Mailer Queue mails not being sent on Dolphin 6.1.6

  1. #1

    Join Date
    Apr 2010
    Posts
    4

    Default Mass Mailer Queue mails not being sent on Dolphin 6.1.6

    I have an issue of mails not being sent on my 6.1.6 version. My old version 6.0.003 was working fine. Has anyone experience this also? hope someone will help to fix this issue. Thanks.

  2. #2
    Administrator Smoge's Avatar
    Join Date
    Mar 2005
    Posts
    6,634
    Blog Entries
    5

    Default

    Are your crons (crontab) setup?
    ModMySite Administrator

    Problems? Questions? Need modifications or other help with your site?

    Open A Ticket , Send Us An Email Or Give Us A Telephone Call +1 518-632-4152.

  3. #3
    Administrator Smoge's Avatar
    Join Date
    Mar 2005
    Posts
    6,634
    Blog Entries
    5

    Default

    You also posted here:
    ModMySite Administrator

    Problems? Questions? Need modifications or other help with your site?

    Open A Ticket , Send Us An Email Or Give Us A Telephone Call +1 518-632-4152.

  4. #4

    Join Date
    Apr 2010
    Posts
    4

    Default

    Yes my crons is set up. Sorry about posting on the 5.6 thread. Anyway thanks for the assistance. I already solved the problem. The version 6.1.6 has a default of not notify on members. So I have to enable them in the mysql database in the "profiles" tables of every member. It is also not shown on the profile field as a default so I have to tweek the table in the "profile fields" table then go to the "emailnotify" table and edit it. Hope this will help other dolphin 6.1.6 user having this issue.
    http://www.community.thefilipinoentrepreneur.com - Entrepreneur Community Site

    http://www.filipinofriendsterworld.com - Filipino Friendster World Social Networking Dating Site

  5. #5
    Administrator Smoge's Avatar
    Join Date
    Mar 2005
    Posts
    6,634
    Blog Entries
    5

    Default

    Yea - you can do a SQL update and change everyone to get the mails... and then, for new users, change the SQL default value for that field - is one way to deal with the problem. Or enable on Join/ProfileEdit.

    Smoge
    ModMySite Administrator

    Problems? Questions? Need modifications or other help with your site?

    Open A Ticket , Send Us An Email Or Give Us A Telephone Call +1 518-632-4152.

  6. #6

    Join Date
    Apr 2010
    Posts
    4

    Default

    Thanks Smoge for the input. Again I can't send mass emails and my previous solution didn't work. I'm thankful that I found a mod. I made a slight change on the mod on #2. ( Profiles.EmailNotify instead of EmailNotify only) This bug fix will be very helpful to 6.1.6 user and might also be a problem on D7. So here it is:


    Applies to 6.1.4,6.1.5 and 6.1.6
    ================================================== ======================



    1) edit file : admin/notifies.php

    //Look for this string :

    `EmailNotify`


    //The string should look like below if not change it :

    `EmailNotify` = 'NotifyMe'


    2) edit file : periodic/notifies.php

    //Look for this string :

    Profiles.EmailNotify


    //The string should look like below if not change it :

    Profiles.EmailNotify = 'NotifyMe'


    3) go to dolphin admin panel > Builders >> Fields Builder -- then move around some fields
    just to make the changes from the database updates to cache.



    4) Delete all user profile cache in foler cache/

    Optional only





    Then go to your mysql query and paste this:

    update `ProfileFields` set `Type`='select_one',`Control`='radio',`Values`='No tifyMe\nNotNotifyMe',`UseLKey`='LKey',`Check`='',` Unique`='0',`Default`='',`Mandatory`='0',`Deletabl e`='0',`JoinPage`='0',`JoinBlock`='0',`JoinOrder`= NULL,`EditOwnBlock`='17',`EditOwnOrder`='5',`EditA dmBlock`='17',`EditAdmOrder`='5',`EditModBlock`='1 7',`EditModOrder`='5',`ViewMembBlock`='0',`ViewAdm Block`='0',`ViewModBlock`='0',`ViewVisBlock`='0',` SearchParams`='',`SearchSimpleBlock`='0',`SearchQu ickBlock`='0',`SearchAdvBlock`='0' where `Name`='EmailNotify';
    alter table `Profiles` change `EmailNotify` `EmailNotify` enum ('NotifyMe','NotNotifyMe') DEFAULT 'NotifyMe';
    update `Profiles` set `EmailNotify`='NotifyMe';
    Last edited by Smoge; 05-10-2010 at 10:22 PM.
    http://www.community.thefilipinoentrepreneur.com - Entrepreneur Community Site

    http://www.filipinofriendsterworld.com - Filipino Friendster World Social Networking Dating Site

  7. #7

    Join Date
    Jul 2010
    Posts
    2

    Default

    Quote Originally Posted by bizfil2010 View Post
    Thanks Smoge for the input. Again I can't send mass emails and my previous solution didn't work. I'm thankful that I found a mod. I made a slight change on the mod on #2. ( Profiles.EmailNotify instead of EmailNotify only) This bug fix will be very helpful to 6.1.6 user and might also be a problem on D7. So here it is:


    Applies to 6.1.4,6.1.5 and 6.1.6
    ================================================== ======================



    1) edit file : admin/notifies.php

    //Look for this string :

    `EmailNotify`


    //The string should look like below if not change it :

    `EmailNotify` = 'NotifyMe'


    2) edit file : periodic/notifies.php

    //Look for this string :

    Profiles.EmailNotify


    //The string should look like below if not change it :

    Profiles.EmailNotify = 'NotifyMe'


    3) go to dolphin admin panel > Builders >> Fields Builder -- then move around some fields
    just to make the changes from the database updates to cache.



    4) Delete all user profile cache in foler cache/

    Optional only





    Then go to your mysql query and paste this:

    update `ProfileFields` set `Type`='select_one',`Control`='radio',`Values`='No tifyMe\nNotNotifyMe',`UseLKey`='LKey',`Check`='',` Unique`='0',`Default`='',`Mandatory`='0',`Deletabl e`='0',`JoinPage`='0',`JoinBlock`='0',`JoinOrder`= NULL,`EditOwnBlock`='17',`EditOwnOrder`='5',`EditA dmBlock`='17',`EditAdmOrder`='5',`EditModBlock`='1 7',`EditModOrder`='5',`ViewMembBlock`='0',`ViewAdm Block`='0',`ViewModBlock`='0',`ViewVisBlock`='0',` SearchParams`='',`SearchSimpleBlock`='0',`SearchQu ickBlock`='0',`SearchAdvBlock`='0' where `Name`='EmailNotify';
    alter table `Profiles` change `EmailNotify` `EmailNotify` enum ('NotifyMe','NotNotifyMe') DEFAULT 'NotifyMe';
    update `Profiles` set `EmailNotify`='NotifyMe';
    i have same problem...after i read this post then i follow this step. but nothing happen.. and no email i got form admin. anybody can help me?

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. mails in the queue problem in Dolphin 7
    By mds in forum Boonex Dolphin 7
    Replies: 0
    Last Post: 06-09-2010, 03:11 PM
  2. Mass Mailer Bug (Dolphin 6.1.4)
    By Smoge in forum Dolphin General Discussion v6.00 and above
    Replies: 0
    Last Post: 04-10-2009, 01:20 AM
  3. Dolphin 5.2 Mass Mailer
    By Zaphieon in forum Dolphin General Discussion v5.0 to v5.21
    Replies: 4
    Last Post: 09-19-2006, 12:39 AM
  4. Mass mail queue stuck
    By sugarenia in forum General Troubleshooting
    Replies: 1
    Last Post: 05-10-2006, 02:32 AM
  5. New mass mailer
    By ijk in forum General Issues, Comments, Questions
    Replies: 1
    Last Post: 01-19-2006, 05:11 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •