| Author |
Message |
FI-DD
Admin

Joined: 22 Sep 2005 Posts: 2736 Location: Germany |
|
|
|
Why can't you use the sorting options in "Edit News"?
|
|
| Sun Aug 26, 2007 1:16 pm |
|
 |
Guest
|
|
|
Please login to hide the ads.
|
|
|
|
 |
D72

Joined: 22 Feb 2007 Posts: 217 Location: NL |
|
importing Excel files some how |
|
Is there a way to import an Excel file wich contains mail addresses and a name?
Or do i have to add each one of them by hand... all 6000 
|
|
| Mon Aug 27, 2007 3:26 pm |
|
 |
FI-DD
Admin

Joined: 22 Sep 2005 Posts: 2736 Location: Germany |
|
|
|
What's the scheme of the Excel file?
|
|
| Thu Aug 30, 2007 2:53 pm |
|
 |
Dexx
Joined: 26 Mar 2008 Posts: 7
|
|
|
|
Hey guys,
I have installed this hack, but it does not send any mail.
I recieve the confirmation in the newsletter panel
Newsletter was sent [X] times to: A|B|C
but no mail arrives...
Another question, i have a problem with images in the newsletter 'cause in the news the image has this sintax:
 |  | <a href="img/img.jpg"><img src="img/thumbs/img.jpg"></a> |
Is possible to use regular expression to remove the anchor?
Ty
|
|
| Tue Apr 15, 2008 9:11 am |
|
 |
FI-DD
Admin

Joined: 22 Sep 2005 Posts: 2736 Location: Germany |
|
|
|
 |  | Newsletter was sent [X] times to: A|B|C
but no mail arrives... |
Maybe it goes to the spam filter?
 |  |  |  | <a href="img/img.jpg"><img src="img/thumbs/img.jpg"></a> |
Is possible to use regular expression to remove the anchor? |
What anchor? What do you want to remove?
|
|
| Tue Apr 15, 2008 2:27 pm |
|
 |
Dexx
Joined: 26 Mar 2008 Posts: 7
|
|
|
|
I found the problem for sending the mail.
There is a problem with the html formatting, it breaks after "<br />some text"
I just replaced every <br /> with <br /> new_line and works, I really do not understand why it causes a problem...
Just help me to replace  |  | <a href="img/img.jpg"><img src="img/thumbs/img.jpg"></a> | with  |  | <img src="img/thumbs/img.jpg"> |
Thanx 
|
|
| Tue Apr 15, 2008 4:47 pm |
|
 |
FI-DD
Admin

Joined: 22 Sep 2005 Posts: 2736 Location: Germany |
|
|
|
 |  | $input = '<a href="img/img.jpg"><img src="img/thumbs/img.jpg"></a>';
$output = preg_replace("#<a href=\"(.*)\"><img src=\"(.*)\"></a>#U", '<img src="\\2">', $input); |
|
|
| Tue Apr 15, 2008 6:50 pm |
|
 |
monkeypoop
Joined: 29 May 2008 Posts: 2
|
|
insert the code.. |
|
I know this is gonna sound elementary but i speak SQL and not too good at PHP...anyway,
I am trying to insert this subscribe code into the example page that came with cutenewsru...
i keep getting php errors like "Fatal error: Function name must be a string in"
What is the correct way to insert this snippet: cn_subscribe();
Sorry for the juvenile question but i'm learning and this should be an easy answer, right?
Thanks
m0nkey
|
|
| Thu May 29, 2008 5:41 pm |
|
 |
FI-DD
Admin

Joined: 22 Sep 2005 Posts: 2736 Location: Germany |
|
|
|
What's the exact error message?
|
|
| Thu May 29, 2008 5:47 pm |
|
 |
monkeypoop
Joined: 29 May 2008 Posts: 2
|
|
|
|
Fatal error: Function name must be a string in /home/ppotis/public_html/cutenews/example/index.php on line 87
line 87 is where i put in the snippet but i KNOW i did not include it correctly...was hoping for a little guidance on how to include the code...
THANKS!!!
|
|
| Thu May 29, 2008 5:52 pm |
|
 |
FI-DD
Admin

Joined: 22 Sep 2005 Posts: 2736 Location: Germany |
|
|
|
Please post the line you inserted plus a few lines above and below that line.
|
|
| Thu May 29, 2008 6:00 pm |
|
 |
nam

Joined: 23 Dec 2006 Posts: 98
|
|
Email validation is a must for this plug-in |
|
60% of emails subscribed in my Newsletter are returned, because this plug-in does not have validation feature so to make sure the email address is valid and the person enters email address is really the one who holds that address. So anyone can enter any email and it is added to emails database right away.
For any public newsletter, email validation is a crucial part.
|
|
| Thu May 29, 2008 6:18 pm |
|
 |
flyboy17
Joined: 21 Feb 2007 Posts: 47
|
|
|
|
One question;
now the default news-order in the newsletter is asc (oldest newsitems first) How can in change this into desc?
Thanks for your help.
|
|
| Thu Jun 19, 2008 3:38 pm |
|
 |
FI-DD
Admin

Joined: 22 Sep 2005 Posts: 2736 Location: Germany |
|
|
|
In editnews.mdu change this:
 |  | foreach ($sql->select(array('table' => 'news', 'orderby' => array('id', 'ASC'))) as $row){
if (@in_array($row['id'], $selected_news)){ |
to this:
 |  | foreach ($sql->select(array('table' => 'news', 'orderby' => array('id', 'DESC'))) as $row){
if (@in_array($row['id'], $selected_news)){ |
|
|
| Fri Jun 20, 2008 1:28 pm |
|
 |
Spoon
Joined: 02 Apr 2008 Posts: 42
|
|
|
|
How come that i cant edit the newsletter template?
everytime i change some settings and press save the newsletter template reverts itsself to the original state.
I want to change the look of that thing!
|
|
| Sat Jun 28, 2008 12:46 pm |
|
 |
|