473,387 Members | 3,033 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

php NNTP server?

Ok, I do NOT want to *connect* to a NNTP server from PHP, I want to -
from a NNTP client - connect to a NNTP server that is powered by PHP.

Specifically, I want articles, forum posts and such from my web site
to be readable via a NNTP interface. So, when the client connects to
my server, a hierarchy might look like this:

sandman.forum.gaming
sandman.forum.media
sandman.articles.weblogs

And so on... Upon reading any such group, all articles show up in a
threaded manner (i.e. replies/comment).

Any ideas?

--
Sandman[.net]
Jul 4 '06 #1
9 2655
I think it won't use any PHP application. It depend on your mailing
list / news server. NNTP can be set at your mailing server / news
server.

http://aplawrence.com/Unixart/newsserver.html

--
http://
Sandman wrote:
Ok, I do NOT want to *connect* to a NNTP server from PHP, I want to -
from a NNTP client - connect to a NNTP server that is powered by PHP.

Specifically, I want articles, forum posts and such from my web site
to be readable via a NNTP interface. So, when the client connects to
my server, a hierarchy might look like this:

sandman.forum.gaming
sandman.forum.media
sandman.articles.weblogs

And so on... Upon reading any such group, all articles show up in a
threaded manner (i.e. replies/comment).

Any ideas?

--
Sandman[.net]
Jul 4 '06 #2
C.
Sandman wrote:
Ok, I do NOT want to *connect* to a NNTP server from PHP, I want to -
from a NNTP client - connect to a NNTP server that is powered by PHP.

Specifically, I want articles, forum posts and such from my web site
to be readable via a NNTP interface. So, when the client connects to
my server, a hierarchy might look like this:
Have you considered replacing the storage layer of an existing NNTP
engine? In addition to inn, you might want to take a look at leafnode.

HTH

C.

Jul 4 '06 #3
On Tue, 04 Jul 2006 09:55:51 +0200, Sandman wrote:
Ok, I do NOT want to *connect* to a NNTP server from PHP, I want to - from
a NNTP client - connect to a NNTP server that is powered by PHP.

Specifically, I want articles, forum posts and such from my web site to be
readable via a NNTP interface. So, when the client connects to my server,
a hierarchy might look like this:

sandman.forum.gaming
sandman.forum.media
sandman.articles.weblogs

And so on... Upon reading any such group, all articles show up in a
threaded manner (i.e. replies/comment).

Any ideas?
It's not written in PHP (but Python) but it does seem to be written with
your purposes in mind:

http://pessoal.org/papercut/index.php

Cheers,
Andy
--
Andy Jeffries MBCS CITP ZCE | gPHPEdit Lead Developer
http://www.gphpedit.org | PHP editor for Gnome 2
http://www.andyjeffries.co.uk | Personal site and photos

Jul 4 '06 #4
In article <11*********************@j8g2000cwa.googlegroups.c om>,
"C." <co************@gmail.comwrote:
Sandman wrote:
Ok, I do NOT want to *connect* to a NNTP server from PHP, I want to -
from a NNTP client - connect to a NNTP server that is powered by PHP.

Specifically, I want articles, forum posts and such from my web site
to be readable via a NNTP interface. So, when the client connects to
my server, a hierarchy might look like this:

Have you considered replacing the storage layer of an existing NNTP
engine? In addition to inn, you might want to take a look at leafnode.
Yeah, but I still need to add intelligence in between the nntp server
and the database in the shape of php scripts.

I.e. when someone posts a usenet message, it needs to be formatted in
a very specific way and so on. Same goes for reformatting the data to
be displayed as a nntp post and so on.

--
Sandman[.net]
Jul 5 '06 #5
ceg
"Sandman" <mr@sandman.netwrote in message
news:mr**********************@individual.net...
Ok, I do NOT want to *connect* to a NNTP server from PHP, I want to -
from a NNTP client - connect to a NNTP server that is powered by PHP.

Specifically, I want articles, forum posts and such from my web site
to be readable via a NNTP interface. So, when the client connects to
my server, a hierarchy might look like this:

sandman.forum.gaming
sandman.forum.media
sandman.articles.weblogs

And so on... Upon reading any such group, all articles show up in a
threaded manner (i.e. replies/comment).

Any ideas?
you might look at something like a program called nntp//rss. i use e107 for
my sites. i have nntp//rss set up to pull the news articles from my sites
and make them available to a nntp reader such as oe or any other standard
reader. the sites show up in the reader much like newsgroups for a regular
news server. if interested, i'll post a link so you can see what i'm
referring to.

--
Posted via a free Usenet account from http://www.teranews.com

Jul 11 '06 #6
In article <44***********************@free.teranews.com>,
"ceg" <me@privacy.netwrote:
"Sandman" <mr@sandman.netwrote in message
news:mr**********************@individual.net...
Ok, I do NOT want to *connect* to a NNTP server from PHP, I want to -
from a NNTP client - connect to a NNTP server that is powered by PHP.

Specifically, I want articles, forum posts and such from my web site
to be readable via a NNTP interface. So, when the client connects to
my server, a hierarchy might look like this:

sandman.forum.gaming
sandman.forum.media
sandman.articles.weblogs

And so on... Upon reading any such group, all articles show up in a
threaded manner (i.e. replies/comment).

Any ideas?

you might look at something like a program called nntp//rss. i use e107 for
my sites. i have nntp//rss set up to pull the news articles from my sites
and make them available to a nntp reader such as oe or any other standard
reader. the sites show up in the reader much like newsgroups for a regular
news server. if interested, i'll post a link so you can see what i'm
referring to.
Sure, I'd be interested in seeing that... As it is now, I'm using
socket_create() and is about to re-implement the entire nntp protocol
by myself... Phew. :)
--
Sandman[.net]
Jul 11 '06 #7
ceg
"Sandman" <mr@sandman.netwrote in message
news:mr**********************@individual.net...
In article <44***********************@free.teranews.com>,
"ceg" <me@privacy.netwrote:
>"Sandman" <mr@sandman.netwrote in message
news:mr**********************@individual.net...
Ok, I do NOT want to *connect* to a NNTP server from PHP, I want to -
from a NNTP client - connect to a NNTP server that is powered by PHP.

Specifically, I want articles, forum posts and such from my web site
to be readable via a NNTP interface. So, when the client connects to
my server, a hierarchy might look like this:

sandman.forum.gaming
sandman.forum.media
sandman.articles.weblogs

And so on... Upon reading any such group, all articles show up in a
threaded manner (i.e. replies/comment).

Any ideas?

you might look at something like a program called nntp//rss. i use e107
for
my sites. i have nntp//rss set up to pull the news articles from my
sites
and make them available to a nntp reader such as oe or any other standard
reader. the sites show up in the reader much like newsgroups for a
regular
news server. if interested, i'll post a link so you can see what i'm
referring to.

Sure, I'd be interested in seeing that... As it is now, I'm using
socket_create() and is about to re-implement the entire nntp protocol
by myself... Phew. :)
server is ceg.sytes.net on port 120. most of the "groups" that show up are
my sites. a couple are self-explanatory by their names and come from other
areas. you should be able to pick these up with most any standard news
reader program.


--
Posted via a free Usenet account from http://www.teranews.com

Jul 13 '06 #8
In article <44**********************@free.teranews.com>,
"ceg" <me@privacy.netwrote:
Sure, I'd be interested in seeing that... As it is now, I'm using
socket_create() and is about to re-implement the entire nntp protocol
by myself... Phew. :)

server is ceg.sytes.net on port 120. most of the "groups" that show up are
my sites.
I can't connect to it...
--
Sandman[.net]
Jul 14 '06 #9
ceg
"Sandman" <mr@sandman.netwrote in message
news:mr**********************@individual.net...
In article <44**********************@free.teranews.com>,
"ceg" <me@privacy.netwrote:
Sure, I'd be interested in seeing that... As it is now, I'm using
socket_create() and is about to re-implement the entire nntp protocol
by myself... Phew. :)

server is ceg.sytes.net on port 120. most of the "groups" that show up
are
my sites.

I can't connect to it...
try server porch.sytes.net or server anandaquest.org. you might have caught
it during the storm we had...knocked our power out...we live out in the
mountains and are doing well to have electricity and indoor plumbing.

--
Posted via a free Usenet account from http://www.teranews.com

Jul 14 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: CJM | last post by:
Apologies for the OT post, but as you will see my options were limited: In addition to all these wonderful NG's, I also need access to the comp.infosystems.www.* NG's. The open nntp server I had...
8
by: Roland Hall | last post by:
Is it possible to send/receive nntp messages via CDOSYS without a 3rd party news component? The NNTP links I have found appear to be related to MS Exchange 2K. My goal is to write an ASP...
0
by: polite person | last post by:
Hi While looking up refs on NNTP in VB I was amused to read the following (code in C#, not on a MS site). I'm fading too and I just hope NNTP lasts as long as I do. "NNTP is an older fading...
3
by: J.Marsch | last post by:
For the past few days, I've been getting really poor performance with these newgroups (use Outlook Express 6 as my NNTP reader), and sometimes it will completely fail download a message, and I have...
11
by: Jim | last post by:
Have you seen any NNTP classes that I may use or build upon to build a simple newsreader/downloader? Is there such a class in the .Net framework that I have overlooked? If not, inclusion of RFC...
0
by: smritikapoor | last post by:
I am trying to connect to an https server using NNTP perl module. I have been able to connect to normal NNTP server using the NNTP perl module but cannot connect to an https server. Please help me...
4
by: BiT | last post by:
Hi i'm trying to code simple nntp client with vb.net and sockets client class the problem is the machine keep stuck (probbley beacuse it ain't gettin` data from the server) after the user name...
3
by: Alexander Higgins | last post by:
Hi, I am working on an NNTP Client via windows forms and am actually try to login into this group to no avail. I am sending AUTHINFO USER username <where username=myemail address AUTHINFO...
11
by: Michael Torrie | last post by:
Mike Driscoll wrote: I rarely use NNTP these days. I access c.l.py exclusively via e-mail, and that works very well. In some cases there is a lot of spam that gets filtered out of the nntp...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.