the module is suppose to install his table alone at first run
the id is the id that you configured in the module, it doesn t match
normaly should be 2 if you have only one module
you can give me an access for support
regard
Thanks to the authors of the following code :
Easy Newsletter (module)
SiteMap (snippet)
Codepress (Plugins)
Strict URLs (Plugins)
Virtual Aliases (Plugins)
Maxygallery (snippet)
thanks for the answer. but dont you have some idea what may be the problem?
wen i install the module show me some problems about language package.
that is the reazon why i configure it from the database and after that works but with that problem.
ideas?
is a very important client, is so hard give access someone to the site.
thank you!
--
ysanmiguel.com
Hello.
I have a question
Is it possible to put name and lastname whom the letter will be send in a body letter?
Yesterday I had a problem with my easynewsletter that I needed to include ' symbols in the text editor. Or course php has troubles then processing this to insert it into the database.
I finally worked out where in the code I needed to alter and thought I would share for if other people are having the same problem.
In backend.php, on line 201
$sql = "UPDATE easynewsletter_newsletter SET subject='".$_POST['subject']."', newsletter='".$testo."' WHERE id='".$_POST['xid']."'";
change to:
$sql = "UPDATE easynewsletter_newsletter SET subject='".$_POST['subject']."', newsletter='".addslashes($testo)."' WHERE id='".$_POST['xid']."'";
(note the added addslashed() function)