vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   NNTP Gateway (Usenet/Newsgroups) (https://vborg.vbsupport.ru/showthread.php?t=35247)

groovesalad 06-05-2003 10:25 PM

.

limey 06-06-2003 04:12 AM

groovesalad...yes i do. you need to get with an appropriate server. one that reads and posts. the free ones are hard to find and are all sketchy. I have not been able to find one that reads and posts and I don't want to get a commercial one.

btw I listen to ur station all the time.

mood 06-08-2003 09:34 AM

Gilby,

Totally stumped why I cannot get the mail list gateway section to work.

Do you have a working "class.POP3.php" sample you could PM me?

BIG Thanks!

Mood

mood 06-08-2003 09:56 AM

Got the mail list feature to work (didn't realize that you had to setup the mail account as a news group in nntp_groups)

Next question: HOW to avoid the circular effect when wanting to sync forum/nntp/mail list.

anybody any ideas?
Thanks
Mood

limey 06-13-2003 01:14 AM

Cancel that its working. Different newsgroups must have different message ID's because I changed that and it worked.

Tried using newsranger and its not working.

mr.children 06-21-2003 08:43 PM

how come i am getting those errors?
please...tell me, i have installed everyhintg

Warning: main(class.POP3.php3) [function.main]: failed to create stream: No such file or directory in /home/virtual/site13/fst/var/www/html/bbs/gateway.php on line 25

Warning: main(class.POP3.php3) [function.main]: failed to create stream: No such file or directory in /home/virtual/site13/fst/var/www/html/bbs/gateway.php on line 25

Warning: main() [function.main]: Failed opening 'class.POP3.php3' for inclusion (include_path='.:/php/includes:/usr/share/php') in /home/virtual/site13/fst/var/www/html/bbs/gateway.php on line 25

Warning: Cannot modify header information - headers already sent by (output started at /home/virtual/site13/fst/var/www/html/bbs/gateway.php:25) in /home/virtual/site13/fst/var/www/html/bbs/gateway.php on line 483
1 group(s) gatewayed. Could not connect to NNTP-serverLogging in to newsgroup.server, group your.newsgroup Not connectedNot connected

btw, what does setlastmsg.php for?

allan grossman 06-22-2003 01:00 PM

Outstanding hack, Gilby - running fine on a clean vB 2.3.0 install.

I did have a small problem with cron jobs not running properly if I redirected stderr and stdout to /dev/null but I fixed that by writing the output to a log file instead.

Can someone help this php n00b tweak the signature function a little?

Instead of appending the username and custom title, what I'd like is *nothing* if the user doesn't have a signature, the user's signature appended to the post if he does, and instead of thread and profile links maybe something under the dashed line like "this post was gatewayed through the forum at http://pointbeing.com"

No big deal, but if someone could knock something like that out for me in a couple minutes it'd be greatly appreciated. Here's the signature section of gateway.php - I don't really need the "unregistered user" section as unregistered users can't post.

PHP Code:

        // get user's signature
        
if ($newthread[userid]){
            
$get_userinfo=$DB_site->query("SELECT signature,usertitle,customtitle FROM user WHERE userid=$newthread[userid] LIMIT 1");
            
$userinfo=$DB_site->fetch_array($get_userinfo);
            
$signature "\n--\n";
            
$signature .= $newthread[username];
            if (
$userinfo[customtitle]){ $signature .= " - $userinfo[usertitle]"; }
            if (
$userinfo[signature]){
                
$signature .= "\n\n";
                
$signature .= format_text($userinfo[signature]);
            }
            
$signature .= "\n------------------------------------------------------------------------\n";
            
$signature .= "$newthread[username]'s Profile: $settings[profileurl]$newthread[userid]\n";
            
$signature .= "View this thread: $settings[threadurl]$newthread[threadid]\n";
        } else {
            
$userinfo false;
            
$signature "\n--\n".$newthread[username]." - Unregistered User";
            
$signature .= "\n------------------------------------------------------------------------\n";
            
$signature .= "View this thread: $settings[threadurl]$newthread[threadid]\n";
        } 

Thanks in advance :)

allan grossman 06-24-2003 11:29 AM

Never mind, I fixed it :)

PhoenixBB 06-29-2003 04:49 PM

Quoting from post 381:

Quote:

my searchindex table started getting out of hand... It reached about a gig, and I was only a quarter done, so I killed all the records and set the nntp options to not index the groups that are based on newsgroups and only index local groups.... now that that is done, my whole dbase is arround 40 meg as of may 22, but should be around 80 or so when done!...
This is the only post I can find on this. Where are these NNTP options? I've looked in the php file but saw nothing there, so anyone know how I can exclude the newsgroups from the search function/index?

I'm shortly going to be adding the code to ensure that newsgroup posts aren't included in normal 'view new' so will that be all that's needed or do I need to do more?

Installed this and the interface without problems, but I haven't run it yet. :D

Also, I have attachments switched off on the board and I'm just using a couple of text groups. I'm using the interface so will that automatically not download attachments, or will they just be put into the database and not displayed on the board. If so how can I ensure it doesn't download binaries?

I'm on a shared server and my host has been really encouraging to me re installing this hack. Don't want to push my luck by having the database grow massively. ;)

Thanks for any help.

PhoenixBB 06-29-2003 04:51 PM

Quoting from post 381:

Quote:

my searchindex table started getting out of hand... It reached about a gig, and I was only a quarter done, so I killed all the records and set the nntp options to not index the groups that are based on newsgroups and only index local groups.... now that that is done, my whole dbase is arround 40 meg as of may 22, but should be around 80 or so when done!...
This is the only post I can find on this. Where are these NNTP options? I've looked in the php file but saw nothing there, so anyone know how I can exclude the newsgroups from the search function/index?

I'm shortly going to be adding the code to ensure that newsgroup posts aren't included in normal 'view new' so will that be all that's needed or do I need to do more?

Installed this and the interface without problems, but I haven't run it yet. :D

Also, I have attachments switched off on the board and I'm just using a couple of text groups. I'm using the interface so will that automatically not download attachments, or will they just be put into the database and not displayed on the board. If so how can I ensure it doesn't download binaries?

I'm on a shared server and my host has been really encouraging to me re installing this hack. Don't want to push my luck by having the database grow massively. ;)

Thanks for any help.

groovesalad 06-29-2003 09:12 PM

del

iggy123 07-01-2003 10:22 PM

any ideas on how to stop it updating all threads?
I have tried to install this but the newsgroup i want to get threads from has 3 months worth of posts - i only want the last months threads.
everytime i manually prune the forum the next time the gateway.php runs it brings in the old posts again.

alesis404 07-02-2003 07:05 AM

Quote:

Using older stuff from Usenet hack - you need a new field in thread table.

ALTER TABLE thread ADD isusenetpost TINYINT(2) DEFAULT 0 not null;

then open your gateway.php and find:

// Create thread
$DB_site->query("INSERT INTO thread (threadid,title,lastpost,forumid,open,replycount,p ostusername,postuserid,lastpos
ter,dateline,iconid,visible,attach,msgid,prefix) VALUES (NULL,'".addslashes(htmlspecialchars($subject))."' ,'".$date."','$forumid','1','0','".addslashes(from _name($message[from]))."','0','".addslashes(from_name($message[from]))."','".$date."','0','1','$attachcount','".addsla shes($message[msgid])."','".addslashes($theprefix)."')");

replace it with (changes enbolded)

// Create thread modded
$DB_site->query("INSERT INTO thread (threadid,title,lastpost,forumid,open,replycount,p ostusername,postuserid,lastpos
ter,dateline,iconid,visible,attach,msgid,isusenetp ost,prefix) VALUES (NULL,'".addslashes(htmlspecialchars($subject))."' ,'".$date."','$forumid','1','0','".addslashes(from _name($message[from]))."','0','".addslashes(from_name($message[from]))."','".$date."','0','1','$attachcount','".addsla shes($message[msgid])."','1','".addslashes($theprefix)."')");

From now on each thread created by gateway.php will be flagged as originating from usenet (isusenetpost=1)...

Open search.php and find two lines:

$wheresql.=" AND thread.open<>10";

in my case around line 551 and 601...
Directly below each of them add:

// NNTP Gateway mod
if (!$includeusenetpostsingetnew) { $wheresql.=" AND thread.isusenetpost=0"; };
// End of mod

Having isusenetpost in thread table also allows you to separate threrad counts or create separate links for "View new Usenet posts" ( see example here...
==============================================
Can someone tell me the correct syntax to run this line as a query and create this?

ALTER TABLE thread ADD isusenetpost TINYINT(2) DEFAULT 0 not null;

*I tried creating the table manually but after doing the mod and trying view new posts I got a white screen and suspect maybe the table I have is made wrong, thanks

PhoenixBB 07-02-2003 07:02 PM

I couldn't get that querie to worked - kept giving me a syntax error. The post beneath that one you quoted provided the solution for me. :)

kaiwang 07-02-2003 07:06 PM

which NNTP service provider is everyone here using??

thanks

alesis404 07-02-2003 08:43 PM

Someone mentioned to remove certain users usenet posts you could do this

Quote:

A simple SQL query can be used periodically to delete them. Use something like "DELETE FROM post WHERE username='username'" You'll also need to run DELETE FROM thread WHERE postusername='name of bad seed'" Or you can see my last post and add another thing to the if statement.
Using phpmyadmin I am trying to run a sql query and am not sure I am doing this properly and need confimation, is the exact line that needs to be typed

DELETE FROM post WHERE username='username'

of course replacing 'username' with the actual username who's posts you need deleted or is there some other code that must be added before this to the standard query from phpmyadmin? I seem to get a syntax error trying to run that line and assume i am missing a small code snippet that might go in front of that line of the querys?

alesis404 07-02-2003 10:40 PM

Post #334 mentioned to alter the table thread and add

ALTER TABLE thread ADD isusenetpost TINYINT(2) DEFAULT 0 not null;

I did this manually and appears I have the table right but going by the last error I got was I supposed to make another change to mention that extra column?

*I did also make the mod to search.php and appears to be blocking posts from "view new posts but now I have this error"

allan grossman 07-02-2003 10:49 PM

Quote:

Today at 04:06 PM kaiwang said this in Post #575
which NNTP service provider is everyone here using??

thanks

I'm using Giganews and it's working fine. I also made some changes to the signature routines - because I wanted them to say something different and because the signature separator wasn't RFC 1036-compliant and some newsreaders were having problems strippng them off.

A compliant signature separator is <linefeed><dash><dash><space><linefeed> Gilby's hack (while outstanding) was missing the space and some newsreaders wouldn't strip the signature out of quoted vB Usenet posts.

This hack has added real value to my board - thanks, Gilby!

PhoenixBB 07-07-2003 04:29 AM

Quote:

which NNTP service provider is everyone here using??
I was going to use my Easynews account, but chickened out when I read the TOS. They were very much ''you must use the account soley for your own use''. Technically it is, but I figured too dicey as I'm in the UK and my site is on a US server, and they might notice I can't be in two continents at once. :P In the end I went with teranews.com who give 50mb a day free, which is plenty for the couple of text groups I use. They charge a one off $3.95, which isn't bad. Had no problems so far.

I'm just gearing up to switch the posting function on. Am a bit nervous of that in case it posts what's already there. I guess I'm gonna have to re-read this whole thread again <whimpers> but am I remembering rightly that people can't use the normal vbcodes when replying? Or if they do they don't get converted like they do on the way in? That'll take some getting used to for some of my members.

alesis404 07-07-2003 05:07 AM

Quote:

A simple SQL query can be used periodically to delete them. Use something like "DELETE FROM post WHERE username='username'" You'll also need to run DELETE FROM thread WHERE postusername='name of bad seed'" Or you can see my last post and add another thing to the if statement.
Is anybody sucessfully doing this through phpmyadmin and if so what is the exact query you are using? I tried this and it gives me a syntax error on line 1 and I really have alot of posts I would like to remove asap...thanks

DELETE FROM post WHERE username='username' <---this give me bad syntax when i run this query from phpmyadmin? is there something that goes in front or behind this...sorry for asking again but I've been waiting all weekend to be able to remove bulk spam posts and would appreciate help from anybody using phpadmin to run this query and delete posts by user, note I cannot mass prune by user from admincp and when I try it hops to the next page but appears there is buttons missing and I cant perform the action...perhaps others know what I mean....

PhoenixBB 07-07-2003 06:03 AM

Am I right in assuming that if I change this:

Quote:

// index for searching
indexpost($postid,1);
in the gateway file, to '0' then it won't index the posts in the searchindex table? And it won't affect the functioning of the 'View New (Usenet)Posts' thingy?

I like having the View New Usenet Posts alongside the normal one, but I just don't want the posts adding to my index. So changing to 0 will fix it right?

Bro_Joey_Gowdy 07-08-2003 01:52 PM

will this now be compatable with vb3.0.0 ??

alesis404 07-23-2003 06:14 AM

I recently moved my vbb to another server and get this error now when trying to manually sync my newsgroups from the cP...anybody know what it is and how I fix it, thank you

Quote:

Warning: Unable to access ../class.POP3.php3 in /home/virtual/site1/fst/var/www/html/forums/gateway.php on line 31

Warning: Failed opening '../class.POP3.php3' for inclusion (include_path='.:/php/includes:/usr/share/php') in /home/virtual/site1/fst/var/www/html/forums/gateway.php on line 31

lierduh 07-25-2003 02:41 PM

Quote:

03-22-02 at 07:27 PM Gilby said this in Post #269
I think I fixed it a while ago, but I must not have updated it in this thread. So, I've uploaded my latest version. The problem that i am assuming is the case here is that I did not have it match the subject correctly by using the htmlentities function as that's how they are stored in the database (ie. a " would be &quot; in the database, thus they don't match).

Also in this version is a bug fix for long threads that would have tons of references. Some nntp servers complain if this header gets too big, so this fixes that.

E-mail gateway support
Also in this version, you can now gateway with email. This will fetch emails from a POP email account and send via th mail account to the mailing list's email address. To set up the list, in the newsgroup field, enter in the email address to send outgoing posts to. In the server field, enter in the pop3 server, and the username and password fields enter in, you guessed it, the username and password to your pop account. Note: the email gateway capabilities has not been fully tested, so it might not work with your POP server. Also, it does not work in combo with a news<->forum gateway in the same forum (you can use either kind though in differnet forums within your forums).

I am using version 1.9, but I too have the sorting problem. I have noticed the last reference picks up the wrong Message-ID.

I have not checked into the codes. Anyone has a quick fix? :)

The code use "include()", I vaguely remember it has some sort of security problem and I have changed them to "require_once()".

lierduh 07-25-2003 02:51 PM

Quote:

06-22-03 at 08:43 AM mr.children said this in Post #566
how come i am getting those errors?
please...tell me, i have installed everyhintg

Warning: main(class.POP3.php3) [function.main]: failed to create stream: No such file or directory in /home/virtual/site13/fst/var/www/html/bbs/gateway.php on line 25
...


You must have already fixed this. For the sake of someone else, the problem is caused by missing class.POP3.php3 file. The v1.9 release contains this file, but the ReadMe is out of date and only asks to update three files excluding this class file. You can either upload this file, or simple "//" out the line: include("class.POP3.php3")

alesis404 07-26-2003 10:02 PM

problem fixed thanks to Erwin ;)

lierduh 07-27-2003 12:54 PM

Edit: 2 Nov 2003.

I have mucked around a bit more to get this to work under vBulletin Version 3. A new post can be found here:

https://vborg.vbsupport.ru/showpost....&postcount=658

Quote:

07-26-03 at 02:41 AM lierduh said this in Post #584
I am using version 1.9, but I too have the sorting problem. I have noticed the last reference picks up the wrong Message-ID.
Ok, I fixed the References problem. Not a elegant way, but I post here anyway for someone who tries to do something similar, or even for me to remember what I did. I have not really tested the codes by the way.

1) Add two columns to post table.

ref (type: Text)
pre_postid (type: int, length:10)

2)hack newreply.php

diff newreply_old.php newreply.php

PHP Code:

26a27,30
> if (isset($pre_postid)) {
>   
$pre_postid=(int)$pre_postid;
> }

305c309
<       $DB_site->query("INSERT INTO post (postid,threadid,title,username,userid,dateline,attachmentid,pagetext,allowsmilie,showsignature,ipaddress,iconid,visible) VALUES (NULL,'$threadid','".addslashes(htmlspecialchars($title))."','".addslashes($postusername)."','$bbuserinfo[userid]','".time()."','$attachmentid','".addslashes($message)."','$allowsmilie','$signature','$ipaddress','$iconid','$visible')");
---
>       
$DB_site->query("INSERT INTO post (postid,threadid,title,username,userid,dateline,attachmentid,pagetext,allowsmilie,showsignature,ipaddress,iconid,visible,pre_postid) VALUES (NULL,'$threadid','".addslashes(htmlspecialchars($title))."','".addslashes($postusername)."','$bbuserinfo[userid]','".time()."','$attachmentid','".addslashes($message)."','$allowsmilie','$signature','$ipaddress','$iconid','$visible','$pre_postid')"); 

3) Modify template: newreply

Find: <input type="hidden" name="threadid" value="$threadid">
add a line
<input type="hidden" name="pre_postid" value="$postid">

4) Modify gateway.php

diff gateway_old.php gateway.php

PHP Code:

20c20
< include("global.php");
---
> require_once(
"global.php");
23c23
< include("nntp.php");
---
> require_once(
"nntp.php");
25c25
< include("class.POP3.php3");
---
//require_once("class.POP3.php3");
27c27
< include("mime.php");
---
> require_once(
"mime.php");
66c66
<       $get_newthreads=$DB_site->query("SELECT post.postid,post.username,post.userid,post.dateline,post.attachmentid,post.pagetext,post.showsignature,post.ipaddress,thread.pollid,thread.title,post.threadid,thread.forumid FROM thread,post WHERE post.isusenetpost=0 AND thread.threadid=post.threadid AND post.dateline=thread.dateline AND post.userid=thread.postuserid AND (thread.forumid="implode(" OR thread.forumid="$group[forum]) . ")");
---
>       
$get_newthreads=$DB_site->query("SELECT post.postid,post.username,post.userid,post.dateline,post.attachmentid,post.pagetext,post.showsignature,post.ipaddress,thread.pollid,thread.title,post.threadid,thread.forumid,post.pre_postid FROM thread,post WHERE post.isusenetpost=0 AND thread.threadid=post.threadid AND post.dateline=thread.dateline AND post.userid=thread.postuserid AND (thread.forumid="implode(" OR thread.forumid="$group[forum]) . ")");
74c74
<       $get_newposts=$DB_site->query("SELECT post.postid,post.username,post.userid,post.dateline,post.attachmentid,post.pagetext,post.showsignature,post.ipaddress,thread.title,post.threadid,thread.forumid,thread.msgid,thread.prefix FROM thread,post WHERE post.isusenetpost=0 AND thread.threadid=post.threadid AND (thread.forumid="implode(" OR thread.forumid="$group[forum]) . ")");
---
>       
$get_newposts=$DB_site->query("SELECT post.postid,post.username,post.userid,post.dateline,post.attachmentid,post.pagetext,post.showsignature,post.ipaddress,thread.title,post.threadid,thread.forumid,thread.msgid,thread.prefix,post.pre_postid FROM thread,post WHERE post.isusenetpost=0 AND thread.threadid=post.threadid AND (thread.forumid="implode(" OR thread.forumid="$group[forum]) . ")");
125a126,132
>                               if ($message[references]){
>                                       
$elements=imap_mime_header_decode($message[references]);
>                                       
$message[references] = '';
>                                       for(
$i=0;$i<count($elements);$i++) {
>                                           
$message[references] .= $elements[$i]->text;
>                                       }
>                               }
214,216c221,223
<                                       }
<                                       
$DB_site->query("INSERT INTO post (postid,threadid,title,username,userid,dateline,attachmentid,pagetext,allowsmilie,showsignature,ipaddress,iconid,visible,isusenetpost,msgid) VALUES (NULL,'$threadid','".addslashes(htmlspecialchars($message[subject]))."','".addslashes(htmlspecialchars(from_name($message[from])))."','0','".$date."','$attachmentid','".addslashes($message[text])."','1','0','".addslashes(htmlspecialchars(from_email($message[from])))."','0','1','1','".addslashes($message[msgid])."')");
<                                       
$postid=$DB_site->insert_id();
---
>                                       }
>                                         
$DB_site->query("INSERT INTO post (postid,threadid,title,username,userid,dateline,attachmentid,pagetext,allowsmilie,showsignature,ipaddress,iconid,visible,isusenetpost,msgid,ref) VALUES (NULL,'$threadid','".addslashes(htmlspecialchars($message[subject]))."','".addslashes(htmlspecialchars(from_name($message[from])))."','0','".$date."','$attachmentid','".addslashes($message[text])."','1','0','".addslashes(htmlspecialchars(from_email($message[from])))."','0','1','1','".addslashes($message[msgid])."','".addslashes($message[references])."')");
>                                         
$postid=$DB_site->insert_id();
258c265
<                                       $DB_site->query("INSERT INTO post (postid,threadid,title,username,userid,dateline,attachmentid,pagetext,allowsmilie,showsignature,ipaddress,iconid,visible,isusenetpost,msgid) VALUES (NULL,'$threadid','".addslashes(htmlspecialchars($message[subject]))."','".addslashes(from_name($message[from]))."','0','".$date."','$attachmentid','".addslashes($message[text])."','1','0','".addslashes(from_email($message[from]))."','0','1','1','".addslashes($message[msgid])."')");
---
>                                       
$DB_site->query("INSERT INTO post (postid,threadid,title,username,userid,dateline,attachmentid,pagetext,allowsmilie,showsignature,ipaddress,iconid,visible,isusenetpost,msgid,ref) VALUES (NULL,'$threadid','".addslashes(htmlspecialchars($message[subject]))."','".addslashes(from_name($message[from]))."','0','".$date."','$attachmentid','".addslashes($message[text])."','1','0','".addslashes(from_email($message[from]))."','0','1','1','".addslashes($message[msgid])."','".addslashes($message[references])."')");
608,613c615,617
<                       $get_attachinfo=$DB_site->query("SELECT msgid FROM post WHERE threadid=$newthread[threadid]");
<                       
$ref '';
<                       while (
$thisref=$DB_site->fetch_array($get_attachinfo)){
<                               if (
$thisref[msgid] and strlen($ref) < 600){ $ref .= "$thisref[msgid] "; }
<                       }
<                       
$ref "\r\nReferences: ".wordwrap($ref210"\r\n        ");
---
>                       
$get_references=$DB_site->query_first("SELECT msgid,ref FROM post WHERE postid=$newthread[pre_postid]");
>                       
$references $get_references[ref] . " " $get_references[msgid];
>                       
$ref "\r\nReferences: ".wordwrap(stripslashes($references), 210"\r\n        ");
629c633
<                       $DB_site->query("UPDATE post SET isusenetpost = -1, msgid = '<".addslashes($msgid).">' WHERE postid=$newthread[postid]");
---
>                       
$DB_site->query("UPDATE post SET isusenetpost =1, msgid ='<".addslashes($msgid).">' , ref = '".$references."' WHERE postid=$newthread[postid]"); 


floridaideal 08-01-2003 02:57 PM

Hello all

Hope someone can please help me, I have installed this wonderful hack and seem to have got it all working fine, it downloads new posts and replys to the 2 newsgroups.

Anyway my problem is that the posts posted on my forum don't post on the newsgroups. I have posted one post and a reply and its been 3 hrs and still not appeared on the newsgroup.

Out of interest I have posted via Outlook a message to the newsgroup and then within about 10 mins it appeared on my forum.

Has anyone had this problem please and can point me in the right direction? Thanks very much

Stuart

poolking 08-01-2003 07:27 PM

I hope this is going to upgraded for vb3. :)

poolking 08-01-2003 07:28 PM

Sorry, only just noticed double post.

floridaideal 08-01-2003 10:37 PM

Hi all

I have been trying to work out the problem I talked about above about my posts on the forum not being sent to the newsgroups and still can't work the problem can someone please help me solve this problem!

A little more info

I am using VB 2.3
Using Clara.net as my news provider (has username and pass to access)
and also installed the interface.

Somone please help

my email is admin@floridaideal.com

Thank you

Stuart

lierduh 08-02-2003 03:41 AM

Quote:

Today at 10:37 AM floridaideal said this in Post #591
Hi all

I have been trying to work out the problem I talked about above about my posts on the forum not being sent to the newsgroups and still can't work the problem can someone please help me solve this problem!

Stuart

Have you had a cron job to run the script?

the gateway.php needs to be run regularly to retrieve and post your newly posted messeages to the news server. You can manually run the script and see what message you have on the screen. Just run:

http:/www.yourforums.com/gateway.php

MaDCaT75 08-13-2003 05:22 AM

Wow I must be one stupid +++++ I cant understand how to install this :cry:

insanctus 08-13-2003 05:28 AM

Quote:

Today at 02:22 AM MaDCaT75 said this in Post #593
Wow I must be one stupid bitch I cant understand how to install this :cry:
Takes time just relax :)

MaDCaT75 08-13-2003 05:30 AM

Quote:

Today at 07:28 AM insanctus said this in Post #594
Takes time just relax :)
I still say I'm a stupid ugly bitch

irubin 08-13-2003 02:17 PM

Hello,

I installed the hack with no problem. I am trying to execute gateway.php - and its updating the forum, but the lastmsg in the nntp_groups table never gets updated - and the browser is attempting to download gateway.php

any ideas?

floridaideal 08-14-2003 02:59 PM

Hello

Is there anyway of making the newsgroups you downloaded NOT count for the final forum post count at the top of the screen?

Thanks

Stuart

floridaideal 08-14-2003 03:00 PM

Hello

Is there anyway of making the newsgroups you downloaded NOT count for the final forum post count at the top of the screen?

Thanks

Stuart

RealCarAudio 08-16-2003 10:23 PM

In the admin section you can edit the forum and there is an option close to the bottom were you state if you want the post count for that forum to be calculated in the total post count.

saab340 08-18-2003 03:39 PM

I receive this error from cron e-mail... and its killing the server after it gets in the loop.... it used to work fine, what is going on, and how could I fix this....

Here is the message:
Invalid SQL: SELECT thread.threadid FROM thread,post WHERE thread.threadid=post.threadid and (thread.title='BAR:Safety Hazard & High Performance/Complex?' OR post.title LIKE '%BAR:Safety Hazard & High Performance/Complex?' OR thread.title='BAR:Safety Hazard & High Performance/Complex?' OR post.title LIKE '%BAR:Safety Hazard & High Performance/Complex?') AND (thread.forumid=187) ORDER BY post.dateline DESC LIMIT 1
mysql error: Server shutdown in progress

mysql error number: 1053


All times are GMT. The time now is 08:31 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.03839 seconds
  • Memory Usage 1,977KB
  • 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
  • (3)bbcode_php_printable
  • (15)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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