Endless vBulletin Forum Pages

By ttfn Last update Apr 29, 2006 — Installed 6,144 times.

Archived Comments (locked)

in
Subscribe to Archived Comments 14 posts, 13 voices



Jesse Andrews Admin

The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)

 
Fuzzwah User

Similar to DryDuck below, I wanted to get this script so that it works on vBull forums which are running the vBSEO url rewriter. vBSEO changes the urls for threads so that they're in the following format:

http://someforum.com/10/section/thread-title-with-hyphens-12345/page5.html

This did the trick:

function findNextLink(doc)
{
	for (var link,i=0; link=doc.links[i]; ++i)

	if ((link.innerHTML == ">" || link.text == ">") 
		&& ( link.getAttribute("href").indexOf("showthread.php?") != -1 
		|| link.getAttribute("href").search(/d+\/page\d+\.html?$/) != -1 ) ) {
		return link;
	}

	return null;
}

 
oneman Scriptwright

It works on Firefox 3 beta 5 pre. Thanks for a great script.

 
oneman Scriptwright

This doesn't work on Firefox 3 beta 3 pre (Minefield). The iframe loads, but no content is copied, and the iframe is never deleted.

 
Mithrandir Scriptwright

@bobielawlintine: only a dirty solution from me. Change the value 2.5

document.documentElement.scrollTop) < (2.5 * window.innerHeight)))

into 4.5 or anything higher.

 
Maleko User

ttfn

you should add page number at the end of each merged pages..

----------
---------
[page 2]
---------
---------
[page 3]

 
bobielawlintine Scriptwright

What should I edit to make this start auto-loading about half way down the page instead of the bottom? I use it for howard forums but it takes about two-three seconds for the next page to load, which kind of defeats the purpose of an autoloading script.

How can I make it start autoloading sooner?

I've no idea how the code works, so if anyone can tell me what to edit exactly I'd really appreciate it.

Thanks in advance!

 
Buggy Menot Scriptwright

Can anyone get it working for the inthemix forums?

www.inthemix.com.au forum forumdisplay.php?f=45

 
rhapsody Scriptwright

This is really nice, thanks.

 
DryDuck User

I have made a small change to the findNextLink function to support www.direxplorers.com/gue-procedures/2846-offici... style links, here is the new version:

function findNextLink(doc)
{
for (var link,i=0; link=doc.links[i]; ++i)

if ((link.innerHTML == ">" || link.text == ">") &&
( link.getAttribute("href").indexOf("showthread.php?") != -1 ||
link.getAttribute("href").search(/\/\d+.*-\d+\.html?$/) != -1 ) ) {
return link;
}

return null;
}

 
Dan Simmons User

Works great on Nobodylikesonions.com forums, once I grew a brain and added it to Included Pages... Awesome

 
Nigh7mar3 Scriptwright

really nice mod!!! but the forum function of last post read works?

 
emattias Scriptwright

This is a wonderful script. Works on several forums using vbulletin. Like lost-forum.com & the notebookreview.com forums. My favorite script probably.

 
Michael Houg... User

Doesn't work for dogsonacid.com?

Cross
Presentational HTML allowed.
Use <code> for inline code and <pre> for code blocks. Use &lt; and &gt; for literal < and >.
We help break paragraphs and link your links.
or cancel