The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Details »» | |||||||||||||||||||||||||
THIS THREAD IS CLOSED!
Posts in here will NOT be answered This hack has undergone many major changes since this thread was started. Consequently, most of the posts have become dated and of little use. To coincide with the latest major release (20010712), a new one has been started. See this thread for the latest version and discussion Show Your Support
|
Comments |
#342
|
|||
|
|||
OK... sorry about all these posts. I have just found the problem with the date thing. The problem is obvious and I have no idea how I missed it! The conversion is only done when a thread starter is loaded. For replies I still had a hard code of '$dtm=time();' in there... ooops
Sorry about that. |
#343
|
|||
|
|||
Ah right good to hear it's not my misconfiguration again .
|
#344
|
|||
|
|||
Here's another one that attempts to fix the recent issues.
Download v20010504 for RC2 |
#345
|
|||
|
|||
I messed up again... I forgot to include the new usenet.php file in the package! I've edited the previous post and changed the version and download link. All should be OK now.
|
#346
|
|||
|
|||
When I run newnews.pl I get this
Code:
Fetching article body 64980... OK Processing article batch... Use of uninitialized value in numeric gt (>) at newnews.pl line 216. Use of uninitialized value in concatenation (.) at newnews.pl line 228. Use of uninitialized value in concatenation (.) at newnews.pl line 228. Use of uninitialized value in concatenation (.) at newnews.pl line 228. Use of uninitialized value in concatenation (.) at newnews.pl line 228. Use of uninitialized value in concatenation (.) at newnews.pl line 228. Use of uninitialized value in concatenation (.) at newnews.pl line 228. Use of uninitialized value in concatenation (.) at newnews.pl line 228. Query failed: INSERT LOW_PRIORITY IGNORE INTO usenet_ref (msgid,ref,cnt,dtm) VALUES ('<9abt4l$eqr$4@dyfi.aber.ac.uk>','<99pjhv$6tt$1@dyfi.aber.ac.uk>',6+1,),('<9abt4l$eqr$4@dyfi.aber.ac.uk>','<%k2w6.3328$W51.2310054@e3500-chi1.usenetserver.com>',6+1,),('<9abt4l$eqr$4@dyfi.aber.ac.uk>','<3AC0F88A.312BF9B7@crosslink.net>',6+1,),('<9abt4l$eqr$4@dyfi.aber.ac.uk>','<3AC3FEDC.4043@i-plus.net>',6+1,),('<9abt4l$eqr$4@dyfi.aber.ac.uk>','<99vgrr$g0k$2@dyfi.aber.ac.uk>',6+1,),('<9abt4l$eqr$4@dyfi.aber.ac.uk>','<290320010806569457%scott@nospam.winders.com>',6+1,),('<9abt4l$eqr$4@dyfi.aber.ac.uk>','<9a9ehk$5fu$5@dyfi.ab',6+1,) DBD::mysql::db do failed: You have an error in your SQL syntax near '),('<9abt4l$eqr$4@dyfi.aber.ac.uk>','<%k2w6.3328$W51.2310054@e3500-chi1.usenetse' at line 1 at newnews.pl line 576. |
#347
|
|||
|
|||
What's the size and type of your ref column in the usenet_ref table. Try making it bigger.
|
#348
|
|||
|
|||
It was varchar(128).
I've tried changing it to varchar(255) but get the same error. |
#349
|
|||
|
|||
If you need to test it the import was
Code:
Getting article batch from rec.motorcycles.racing Fetching headers of articles 64663 to 64980... |
#350
|
|||
|
|||
It' the usenet date/time. It either doesn't exist (unlikely) or it's malformed in the usenet post header. This is one of the reasons I went to local time. Have a look at the article on the server and see what the date looks like. I can't see it as your article numbers mean nothing to my server. As a workround you can add the following code at line immediately above line 216 that reads: if ($dtm > time()+600) { $dtm = time(); }
Code:
if (!$dtm) { $dtm = time(); } |
#351
|
|||
|
|||
Note the little change I just made to that change. It should be !$dtm.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|