vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   NNTP Gateway for Usenet ( Newsgroups ), Mailing Lists (https://vborg.vbsupport.ru/showthread.php?t=65152)

Xer 08-16-2004 08:24 AM

could anyone can tell me how to make gateway.php runs automatically

i did put the cronjob under VB admincp but it dont works i set [30 * * * * ./includes/cron/gateway.php] and i checked the cronjob log , cant see this job is running

if i put in [30 * * * * ./includes/cron/gateway.php?dubug=1] vb says

Quote:

Warning: main(./includes/cron/gateway.php?debug=1): failed to open stream: No such file or directory in /home/myabz/domains/myabz.info/public_html/dream/forums/admincp/cronadmin.php on line 56

Fatal error: main(): Failed opening required './includes/cron/gateway.php?debug=1' (include_path='.:/usr/local/lib/php') in /home/myabz/domains/myabz.info/public_html/dream/forums/admincp/cronadmin.php on line 56

thanks :disappointed:

Marv 08-16-2004 08:40 AM

Quote:

Originally Posted by Xer
could anyone can tell me how to make gateway.php runs automatically

i did put the cronjob under VB admincp but it dont works i set [30 * * * * ./includes/cron/gateway.php] and i checked the cronjob log , cant see this job is running

if i put in [30 * * * * ./includes/cron/gateway.php?dubug=1] vb says



thanks :disappointed:

You pointed the cron to the wrong DIR. Gateway.php should be located in {forumsroot}/gateway.php . In the vb-cronjob field write: ./gateway.php .

That?s all.

allan grossman 08-16-2004 09:48 AM

Quote:

Originally Posted by Marv
Hi lierduh,

are you working an the next release of this hack yet ? if so I would really appreciate if you ( or someone else ) could make this hack producing correct email adresses in the header ( i.e. From: My Name <myemail@domain.com>) .
Many people in the newsgroups which we?re importing are asking for that.

Is there a simple way of including the email-adress from the db to the header information, so that others only have to hit the reply button to drop the author a line?

Regards,
Marv.

I'm gonna politely disagree here unless there's a way to disable the function. Zillions of spammers mine Usenet for email addresses - I'd prefer the addresses remain munged up.

Me? I use abuse@localhost as a return address. I don't know if it does any good but it makes me feel better ;)

Marv 08-16-2004 10:20 AM

Quote:

Originally Posted by allan grossman
I'm gonna politely disagree here unless there's a way to disable the function. Zillions of spammers mine Usenet for email addresses - I'd prefer the addresses remain munged up.

Hi Allan,

that?s the reason why I never release me email-adress to the usenet. I use a nospam@myhost.com adress, which spammers can reply to but their emails become deleted automaticly.

But I think - for me and my forums - it wouldn?t be a useful feature. In the past days more and more people which are using clients for posting/reading are flaming why the heck we dont obey the usenet rules which include that every post has to have a correct and replyable emailadress which belongs to the original poster. (For details have a look into RFC 2822) .
By now some of them say that in case we don?t change the behavior of this script they?ll drop abuse complaints to the network administration and our newsgroup-provider for closing our accounts. And as it looks so far they will obey the rules and disable our account. Even if the newsgroup-provider would reject their request - the network admins won?t.
So,..for us it?s not only a useful feature - it?s a needed one :ermm:

If this could be implemented into this hack I would really appreciate that. Otherwise we`ld have to disable "Sending postings to newsgroups" and would have a read-only forum that makes no sense for anyone.

john_rsd 08-16-2004 11:12 AM

I do not think cron jobs under vb are true crons.

I know the scheduled task manager within vb cannot execute by itself without users actually visiting the site, my assumption is no actual timer routines actually exist and the tasks rely on user hits to the site in order to trigger the code execution (psuedo scheduled) to check time and compare against tasks around same time or they do not execute.

The vb cron jobs may well be similar.

I tried both and they failed to execute, I had to set one going on the server itself.

http://www.vbulletin.com/forum/showthread.php?t=108503

Marv 08-16-2004 11:26 AM

Quote:

Originally Posted by john_rsd
I do not think cron jobs under vb are true crons.

I know the scheduled task manager within vb cannot execute by itself without users actually visiting the site, my assumption is no actual timer routines actually exist and the tasks rely on user hits to the site in order to trigger the code execution (psuedo scheduled) to check time and compare against tasks around same time or they do not execute.

John, the vbcron isn?t a cronjob based on the server time. You?ll find $cronimage in several templates. Every time this template is called $cronimage triggers the vbcronjob. So you?re right - the vbcron is based on hits.

kmike 08-17-2004 07:05 PM

Observant Usenet user emailed me that some replies going to Usenet from our gateway didn't have "References" header and "Re: " in the subject. I investigated this, and it appears that current code is indeed buggy.

Current code first chooses new forum threads and then new posts to send to news server, but SQL query responsible for new threads gets it all wrong.
It gets not only new threads' posts themselves, but also posts to the same thread by the thread author, if the thread was started from the forum. It means that all subsequent forum posts to the thread by the thread author won't get "References" header and also "Re: " in the subject, and therefore won't be threaded in the newsgroups.

The fix is to use special "firstpostid" field in the thread table for determining the first post in the thread.

Replace this code:
PHP Code:

                $get_newthreads=$DB_site->query("SELECT post.*, thread.*,
                        post.dateline AS postdateline, post.msgid AS postmsgid,
                        thread.title AS threadtitle
                        FROM " 
TABLE_PREFIX "post as post LEFT JOIN " .
                        
TABLE_PREFIX "thread as thread ON (
                        thread.threadid = post.threadid
                        AND post.userid = thread.postuserid)
                        WHERE post.isusenetpost = 0 AND
                        post.postid > 
{$nntp_settings['last_postid']} AND
                        thread.forumid = 
{$group['forum']}"); 

with this:
PHP Code:

                $get_newthreads=$DB_site->query("SELECT post.*, thread.*,
                        post.dateline AS postdateline, post.msgid AS postmsgid,
                        thread.title AS threadtitle
                        FROM " 
TABLE_PREFIX "thread as thread LEFT JOIN " .
                        
TABLE_PREFIX "post as post ON
                        thread.firstpostid = post.postid
                        WHERE post.isusenetpost = 0 AND
                        post.postid > 
{$nntp_settings['last_postid']} AND
                        thread.forumid = 
{$group['forum']}"); 


PokerFinder 08-18-2004 09:27 PM

Yes, I would like to know how to keep the posts to be at a certain amount. I want the total to be 20,000 so any new posts that come in, should be replaced with old posts....clean and add so i dont lose my isp account or website stops. thanks for your help in advance!

Quote:

Originally Posted by fonzerelli_79
is anyone pruning their usenetgroup forum

my group has pulled about 160,000 posts so far and it keeps increasing - im fairly pleased with this in one respect in that the search engines will have plenty of pages to keep them busy which should hopefully increase traffic

however, the more and more posts there are the larger my database will be which means that backing up will be a pain just now but if i leave it as it is for a few months id have to back up a forum of millions of posts - not good

whats everyone else doing about this?


PokerFinder 08-18-2004 09:30 PM

Hi,

I have made changes per your sugestions...thanks...now...I can't get my posts to show up on usenet. it simply stays on my forum but i can get new posts fine.

i did several tests sending and out of 9, only 1 post went through...my port 119 isnt blocked and i have used a nntp gateway before (mynewsgroups :) but switched to this wonderful hack. please help!

ps. am i suppose to have the gateway or nntp/newsgroup settings in vbulletin option in admin cp area? i saw them when i installed it but then it disappeared :ermm:

Quote:

Originally Posted by kmike
Observant Usenet user emailed me that some replies going to Usenet from our gateway didn't have "References" header and "Re: " in the subject. I investigated this, and it appears that current code is indeed buggy.

Current code first chooses new forum threads and then new posts to send to news server, but SQL query responsible for new threads gets it all wrong.
It gets not only new threads' posts themselves, but also posts to the same thread by the thread author, if the thread was started from the forum. It means that all subsequent forum posts to the thread by the thread author won't get "References" header and also "Re: " in the subject, and therefore won't be threaded in the newsgroups.

The fix is to use special "firstpostid" field in the thread table for determining the first post in the thread.

Replace this code:
PHP Code:

                $get_newthreads=$DB_site->query("SELECT post.*, thread.*,
                        post.dateline AS postdateline, post.msgid AS postmsgid,
                        thread.title AS threadtitle
                        FROM " 
TABLE_PREFIX "post as post LEFT JOIN " .
                        
TABLE_PREFIX "thread as thread ON (
                        thread.threadid = post.threadid
                        AND post.userid = thread.postuserid)
                        WHERE post.isusenetpost = 0 AND
                        post.postid > 
{$nntp_settings['last_postid']} AND
                        thread.forumid = 
{$group['forum']}"); 

with this:
PHP Code:

                $get_newthreads=$DB_site->query("SELECT post.*, thread.*,
                        post.dateline AS postdateline, post.msgid AS postmsgid,
                        thread.title AS threadtitle
                        FROM " 
TABLE_PREFIX "thread as thread LEFT JOIN " .
                        
TABLE_PREFIX "post as post ON
                        thread.firstpostid = post.postid
                        WHERE post.isusenetpost = 0 AND
                        post.postid > 
{$nntp_settings['last_postid']} AND
                        thread.forumid = 
{$group['forum']}"); 



Blackbeard 08-19-2004 09:20 AM

iam using a hack of vb.org that shows

There have been # threads and # posts since your last visit!

is there anyway i can exclude my gatewayposts from this count


All times are GMT. The time now is 07:41 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01925 seconds
  • Memory Usage 1,814KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_php_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete