Post by mpandey » Mon Jul 15, 2013 7:59 am

Hi Forum
I am having problem in sending the news letter through Sales>Mail. when i am composing the mail and sending it, i m getting the error E-Mail Message required!. Do any one can help me to solve this error please?

Please do reply urgent.
Thanks

New member

Posts

Joined
Wed May 01, 2013 6:45 am

Post by pedro1993 » Mon Jul 15, 2013 10:08 pm

Are you posting anything in the email message field?

Peter

For OpenCart & PHP/MySQL support feel free to PM me :)
Click here for my extentions
Did I help you? Donate here to show support


Active Member

Posts

Joined
Tue Oct 18, 2011 4:31 am
Location - Glasgow, Scotland

Post by mpandey » Tue Jul 16, 2013 5:39 am

pedro1993 wrote:Are you posting anything in the email message field?

Peter
Hi Peter,
Yes i am posting in the message field.

New member

Posts

Joined
Wed May 01, 2013 6:45 am

Post by pedro1993 » Wed Jul 17, 2013 7:26 am

Do you have any vQmods installed that may be interfering?

Peter
mpandey wrote:
pedro1993 wrote:Are you posting anything in the email message field?

Peter
Hi Peter,
Yes i am posting in the message field.

For OpenCart & PHP/MySQL support feel free to PM me :)
Click here for my extentions
Did I help you? Donate here to show support


Active Member

Posts

Joined
Tue Oct 18, 2011 4:31 am
Location - Glasgow, Scotland

Post by mpandey » Wed Jul 17, 2013 8:39 am

pedro1993 wrote:Do you have any vQmods installed that may be interfering?

Peter
mpandey wrote:
pedro1993 wrote:Are you posting anything in the email message field?

Peter
Hi Peter,
Yes i am posting in the message field.
Hi Peter,
yes i have installed vQmod, but its not active. if the problem is due to vQmod then how can i remove it?

Thanks

New member

Posts

Joined
Wed May 01, 2013 6:45 am

Post by mpandey » Wed Jul 17, 2013 11:15 am

Removed vQmods, but still the same error. Any help forum. Do anybody else has got this problem?
Please do reply.

New member

Posts

Joined
Wed May 01, 2013 6:45 am

Post by i2Paq » Wed Jul 17, 2013 4:55 pm

I can confirm that with a clean install and NO vQmods I have the same issue.

Norman in 't Veldt
Moderator OpenCart Forums

_________________ READ and Search BEFORE POSTING _________________

Our FREE search: Find your answer FAST!.

[How to] BTW + Verzend + betaal setup.


User avatar
Global Moderator

Posts

Joined
Mon Nov 09, 2009 7:00 pm
Location - Winkel - The Netherlands

Post by pedro1993 » Wed Jul 17, 2013 8:14 pm

I am out all day today, but I will have a good look into this later tonight!

Peter
i2Paq wrote:I can confirm that with a clean install and NO vQmods I have the same issue.

For OpenCart & PHP/MySQL support feel free to PM me :)
Click here for my extentions
Did I help you? Donate here to show support


Active Member

Posts

Joined
Tue Oct 18, 2011 4:31 am
Location - Glasgow, Scotland

Post by heidi11 » Wed Jul 17, 2013 9:14 pm

I have also this problem.

It's perhaps a bug?

New member

Posts

Joined
Sun Feb 19, 2012 6:30 pm

Post by mpandey » Thu Jul 18, 2013 6:55 am

i2Paq wrote:I can confirm that with a clean install and NO vQmods I have the same issue.
Can i post this problem to BUG REPORTS if the Administrators/Moderators will not send me any WARNING????

Please do help... I am stuck ???

New member

Posts

Joined
Wed May 01, 2013 6:45 am

Post by MarketInSG » Thu Jul 18, 2013 9:39 am

do a search for line 244 (the following)

Code: Select all

$('textarea[name=\'message\']').html($('textarea[name=\'message\']').val());
and replace with

Code: Select all

$('textarea[name=\'message\']').html(CKEDITOR.instances.message.getData());


User avatar
Guru Member

Posts

Joined
Wed Nov 16, 2011 11:53 am
Location - Singapore

Post by mpandey » Thu Jul 18, 2013 9:53 am

MarketInSG wrote:do a search for line 244 (the following)

Code: Select all

$('textarea[name=\'message\']').html($('textarea[name=\'message\']').val());
and replace with

Code: Select all

$('textarea[name=\'message\']').html(CKEDITOR.instances.message.getData());
Thanks for your reply.
Which folder?

New member

Posts

Joined
Wed May 01, 2013 6:45 am

User avatar
Guru Member

Posts

Joined
Wed Nov 16, 2011 11:53 am
Location - Singapore

Post by mpandey » Thu Jul 18, 2013 10:08 am

MarketInSG wrote:do a search for line 244 (the following)

Code: Select all

$('textarea[name=\'message\']').html($('textarea[name=\'message\']').val());
and replace with

Code: Select all

$('textarea[name=\'message\']').html(CKEDITOR.instances.message.getData());
THANKS A LOT. WORKED VERY WELL :)

New member

Posts

Joined
Wed May 01, 2013 6:45 am

Post by pedro1993 » Thu Jul 18, 2013 11:10 am

I am glad you got it working. I have read that a couple of other users have had the same problem. I have still not tested this myself, but this could be a possible bug.
mpandey wrote:
MarketInSG wrote:do a search for line 244 (the following)

Code: Select all

$('textarea[name=\'message\']').html($('textarea[name=\'message\']').val());
and replace with

Code: Select all

$('textarea[name=\'message\']').html(CKEDITOR.instances.message.getData());
THANKS A LOT. WORKED VERY WELL :)

For OpenCart & PHP/MySQL support feel free to PM me :)
Click here for my extentions
Did I help you? Donate here to show support


Active Member

Posts

Joined
Tue Oct 18, 2011 4:31 am
Location - Glasgow, Scotland

Post by MarketInSG » Thu Jul 18, 2013 3:25 pm

mpandey wrote:
MarketInSG wrote:do a search for line 244 (the following)

Code: Select all

$('textarea[name=\'message\']').html($('textarea[name=\'message\']').val());
and replace with

Code: Select all

$('textarea[name=\'message\']').html(CKEDITOR.instances.message.getData());
THANKS A LOT. WORKED VERY WELL :)
Welcome 8)


User avatar
Guru Member

Posts

Joined
Wed Nov 16, 2011 11:53 am
Location - Singapore

Post by pedro1993 » Fri Jul 19, 2013 2:34 am

Here is a vQmod version of the fix :)

Peter :)
MarketInSG wrote:do a search for line 244 (the following)

Code: Select all

$('textarea[name=\'message\']').html($('textarea[name=\'message\']').val());
and replace with

Code: Select all

$('textarea[name=\'message\']').html(CKEDITOR.instances.message.getData());

For OpenCart & PHP/MySQL support feel free to PM me :)
Click here for my extentions
Did I help you? Donate here to show support


Active Member

Posts

Joined
Tue Oct 18, 2011 4:31 am
Location - Glasgow, Scotland

Post by mpandey » Fri Jul 19, 2013 5:53 am

pedro1993 wrote:Here is a vQmod version of the fix :)

Peter :)
MarketInSG wrote:do a search for line 244 (the following)

Code: Select all

$('textarea[name=\'message\']').html($('textarea[name=\'message\']').val());
and replace with

Code: Select all

$('textarea[name=\'message\']').html(CKEDITOR.instances.message.getData());
Thanks for the efforts :)

Keep it up.

New member

Posts

Joined
Wed May 01, 2013 6:45 am

Post by butte » Mon Aug 12, 2013 6:08 am

With 1.5.5.1 and in all likelihood also 1.5.6.0 it will help to replace everything in the /admin/view/javascript/ckeditor/ tree with the latest current Full package (through now all latest work) from ckeditor.com/download/, which takes care of problems that relate obviously or subtly to it. In at least one instance doing no more than that made the mail work. From there, a bare few other -- additional -- approaches are available.

Guru Member

Posts

Joined
Wed Mar 20, 2013 6:58 am

Post by 528491 » Thu Oct 17, 2013 3:36 pm

Hello Pedro,
I just wanted to thank you for your vQmod version of the fix, I just tested it and it works great.

I have also come across the older thread on this same issue, which offers a hardcoding fix, and two vQmod versions fix, but I figured I should reference your fix instead because it is of fresh date, altho less time downloaded.

Thanks once more

New member

Posts

Joined
Tue Apr 02, 2013 6:05 pm
Who is online

Users browsing this forum: No registered users and 19 guests