Quote:
Originally posted by WildWayz
Also,
when I hit on quote then reply, the newsgroup reads my posts as a single line paragraph ie no line breaks.
Any way we can get linebreaks to work?
|
Line breaks work for me. I have also been unable to reproduce your other error. What platform are you on?
To verify that the script is sending things to usenet, run this query immediately after you post a thread. Substitute '$$newsgroup->{forumid}' with the forumid in which the thread was posted.
Code:
SELECT e.csig,
b.email,
b.showemail,
b.signature,
a.threadid,
a.postusername,
a.title,
d.newsgroup
FROM thread AS a,
user AS b,
usergroup AS c,
usenet_group AS d,
userfield AS e
WHERE a.visible=1
AND forumid=$$newsgroup->{forumid}
AND a.postuserid=b.userid
AND b.usergroupid=c.usergroupid
AND b.userid=e.userid
AND a.isusenetpost=0
AND a.forumid=d.forum;