Register on the forum now to remove ALL ads + popups + get access to tons of hidden content for members only!
vintage erotica forum vintage erotica forum vintage erotica forum
vintage erotica forum
Home
Go Back   Vintage Erotica Forums > Information & Help Forum > Help Section
Best Porn Sites Live Sex Register FAQ Members List Calendar

Notices
Help Section If you have technical problems or questions then post or look for answers here.


Reply
 
Thread Tools Display Modes
Old June 8th, 2018, 01:37 PM   #181
Hugh Jampton
Vintage Member
 
Hugh Jampton's Avatar
 
Join Date: May 2006
Posts: 793
Thanks: 5,024
Thanked 26,944 Times in 751 Posts
Hugh Jampton 100000+Hugh Jampton 100000+Hugh Jampton 100000+Hugh Jampton 100000+Hugh Jampton 100000+Hugh Jampton 100000+Hugh Jampton 100000+Hugh Jampton 100000+Hugh Jampton 100000+Hugh Jampton 100000+Hugh Jampton 100000+
Default Still getting "Request failed! Too many retries" error on pixhost

I've downloaded the most recent host file I can find ( December 2017 )
pixhost.org was on the list but pixhost.to was not.

I've added pixhost.to as a new host label, selected it from the drop down list ( where it now appears ) and clicked the Add Host button...

BUT,

The Save Changes button is still greyed out and I'm still getting "Request failed!" errors, even with the retry limit set to 48 attempts!

Help!

Hugh Jampton is offline   Reply With Quote
The Following 7 Users Say Thank You to Hugh Jampton For This Useful Post:
Old June 8th, 2018, 02:48 PM   #182
halvar
Blocked!
 
Join Date: Jan 2008
Location: HH
Posts: 1,963
Thanks: 115,040
Thanked 32,801 Times in 1,955 Posts
halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+
Default

Quote:
Originally Posted by Hugh Jampton View Post
I've downloaded the most recent host file I can find ( December 2017 )
pixhost.org was on the list but pixhost.to was not.

I've added pixhost.to as a new host label, selected it from the drop down list ( where it now appears ) and clicked the Add Host button...

BUT,

The Save Changes button is still greyed out and I'm still getting "Request failed!" errors, even with the retry limit set to 48 attempts!

Help!

There is still the not functioning example code in the large textbox. This does always ABORT.
You have to paste the following code in the large textbox (after you have selected pixhost.to):
Code:
function(pageData, pageUrl) {
	var retVal = {imgUrl: null, fileName: null, status: "ABORT"};
	// Search for <img ... id="image" ... />
	var iTag = (pageData.match(/<img\b[^>]*?\bid\s*=\s*('|")image\1[^>]*?>/i)||[])[0];
	if (iTag) {
		var iUrl = (iTag.match(/\bsrc\s*=\s*('|")(.*?)\1/i)||[])[2];
		if (iUrl) {
			retVal.imgUrl = iUrl;
			retVal.status = "OK";
			// Get original filename from url
			var iName = (iUrl.match(/\/([^/]*)$/)||[])[1]; // get part after last slash
			iName = iName.replace(/^\d*_/, ""); // remove leading digits
			if (iName) {  // exists and is not empty
				retVal.fileName = iName;
			}
		}
	}
	return retVal;
}
And save. I hope the save button gets enabled after you pasted this...

If the button is still not active:
What version of IHG do you have? I will try to look at the IHG source.



Addendum:
I have found the piece of code responsible for enabling the save button.
  • The button starts in disabled state
  • every input typing, pasting leads to validation of the state:
  • if no host is selected in the listbox on top the button is disabled
  • if one of "host label", "url pattern" or "search pattern" is empty the button is disabled

Last edited by halvar; June 8th, 2018 at 03:35 PM.. Reason: Addendum
halvar is offline   Reply With Quote
Old June 8th, 2018, 05:04 PM   #183
Hugh Jampton
Vintage Member
 
Hugh Jampton's Avatar
 
Join Date: May 2006
Posts: 793
Thanks: 5,024
Thanked 26,944 Times in 751 Posts
Hugh Jampton 100000+Hugh Jampton 100000+Hugh Jampton 100000+Hugh Jampton 100000+Hugh Jampton 100000+Hugh Jampton 100000+Hugh Jampton 100000+Hugh Jampton 100000+Hugh Jampton 100000+Hugh Jampton 100000+Hugh Jampton 100000+
Default This seems to work!

Yay!

Hugh Jampton is offline   Reply With Quote
The Following 4 Users Say Thank You to Hugh Jampton For This Useful Post:
Old June 8th, 2018, 05:04 PM   #184
halvar
Blocked!
 
Join Date: Jan 2008
Location: HH
Posts: 1,963
Thanks: 115,040
Thanked 32,801 Times in 1,955 Posts
halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+
Default

Quote:
Originally Posted by Hugh Jampton View Post
This is the pixhost.org host file setting, the only pixhost reference in the latest .xml filehost available at IHG website.

What do I need to edit to allow it to work with pixhost.to?


</host>

<host id="pixhost.org">

<urlpattern>^https?:\/\/([^/]+\.)?pixhost\.org\/show\/.+$</urlpattern>
<searchpattern>

function(pageData, pageUrl) {
var retVal = {imgUrl: null, fileName: null, status: "ABORT"};
// Search for <img ... id="image" ... />
var iTag = (pageData.match(/<img\b[^>]*?\bid\s*=\s*('|")image\1[^>]*?>/i)||[])[0];
if (iTag) {
var iUrl = (iTag.match(/\bsrc\s*=\s*('|")(.*?)\1/i)||[])[2];
if (iUrl) {
retVal.imgUrl = iUrl;
retVal.status = "OK";
// Get original filename from url
var iName = (iUrl.match(/\/([^/]*)$/)||[])[1]; // get part after last slash
iName = iName.replace(/^\d*_/, ""); // remove leading digits
if (iName) { // exists and is not empty
retVal.fileName = iName;
}
}
}
return retVal;
}</searchpattern>
You have to change the url pattern:

Code:
<urlpattern>^https?:\/\/([^/]+\.)?pixhost\.(org|to)\/show\/.+$</urlpattern>
The trick is the (org|to), meaning org or to.

I love this. Two people describing something in their own words and they don't really know whats going on on the other side. That is why I always try to get the people to show me what exactly they are doing.
Famous Quote: Ah, you are doing it that way! I never thought of that!

Sadly its not possible here...
halvar is offline   Reply With Quote
Old June 8th, 2018, 09:20 PM   #185
beechcott
Member
 
Join Date: Jan 2013
Posts: 64
Thanks: 2,030
Thanked 615 Times in 63 Posts
beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+
Default

Now, when I run ImageHost Grabber in thread-sucker mode in Waterfox, whenever IHG is parsing the pages in preparation to the actual image downloading, the last page (no matter which page I select as last) always causes me to get an "unreponsive page script" warning and the whole browser to freeze up. Is anyone else getting this problem, and is there a fix?
beechcott is offline   Reply With Quote
The Following 2 Users Say Thank You to beechcott For This Useful Post:
Old June 9th, 2018, 05:29 AM   #186
solarbear
Senior Member
 
solarbear's Avatar
 
Join Date: Jun 2017
Posts: 462
Thanks: 62,370
Thanked 5,248 Times in 459 Posts
solarbear 25000+solarbear 25000+solarbear 25000+solarbear 25000+solarbear 25000+solarbear 25000+solarbear 25000+solarbear 25000+solarbear 25000+solarbear 25000+solarbear 25000+
Default

I get that unresponsive script message if it is a massive thread suck like more than 100 pages or something, i just choose 'continue' and toggle on the "do the same thing for future unresponsive scripts" and that works out good, the downing starts and finishes as usual.
__________________
Smutus Emeritus

Last edited by solarbear; June 9th, 2018 at 05:30 AM.. Reason: edit
solarbear is offline   Reply With Quote
The Following 3 Users Say Thank You to solarbear For This Useful Post:
Old June 10th, 2018, 03:29 AM   #187
beechcott
Member
 
Join Date: Jan 2013
Posts: 64
Thanks: 2,030
Thanked 615 Times in 63 Posts
beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+
Default

Quote:
Originally Posted by solarbear View Post
I get that unresponsive script message if it is a massive thread suck like more than 100 pages or something, i just choose 'continue' and toggle on the "do the same thing for future unresponsive scripts" and that works out good, the downing starts and finishes as usual.
That doesn't work for me. It just stays stuck forever.
beechcott is offline   Reply With Quote
The Following 3 Users Say Thank You to beechcott For This Useful Post:
Old June 10th, 2018, 04:17 AM   #188
solarbear
Senior Member
 
solarbear's Avatar
 
Join Date: Jun 2017
Posts: 462
Thanks: 62,370
Thanked 5,248 Times in 459 Posts
solarbear 25000+solarbear 25000+solarbear 25000+solarbear 25000+solarbear 25000+solarbear 25000+solarbear 25000+solarbear 25000+solarbear 25000+solarbear 25000+solarbear 25000+
Default

yes, you have to watch your cpu usage, if it is elevated, then the pages are loading, it takes a while sometimes if alot of pages are queue-ing.

If the cpu is flatlining, then that is another story. I use the task manager in windows or the system monitor in linux to monitor the cpu, they are kind of the same thing, just different OSs
__________________
Smutus Emeritus
solarbear is offline   Reply With Quote
The Following 3 Users Say Thank You to solarbear For This Useful Post:
Old June 10th, 2018, 05:38 AM   #189
beechcott
Member
 
Join Date: Jan 2013
Posts: 64
Thanks: 2,030
Thanked 615 Times in 63 Posts
beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+beechcott 2500+
Default

Quote:
Originally Posted by solarbear View Post
yes, you have to watch your cpu usage, if it is elevated, then the pages are loading, it takes a while sometimes if alot of pages are queue-ing.

If the cpu is flatlining, then that is another story.
It might be that my CPU isn't powerful enough.

However, I don't get this problem at all while using IHG in Pale Moon. It's only while using Waterfox that I get it. I wonder why?
beechcott is offline   Reply With Quote
The Following 2 Users Say Thank You to beechcott For This Useful Post:
Old June 10th, 2018, 05:59 AM   #190
buttsie
Porn Archeologist
 
buttsie's Avatar
 
Join Date: Sep 2007
Location: earth
Posts: 12,714
Thanks: 92,252
Thanked 241,299 Times in 12,746 Posts
buttsie 1000000+buttsie 1000000+buttsie 1000000+buttsie 1000000+buttsie 1000000+buttsie 1000000+buttsie 1000000+buttsie 1000000+buttsie 1000000+buttsie 1000000+buttsie 1000000+
Default

Palemoon is an older version of FF that has been specifically made for modern CPUs
Theres a lot of baggage in FF to cover all possible operating systems which slows it down
compared to Palemoon.

Waterfox Is Firefox ESR, But With Slower Security Updates
A full service browser made specifically for 64bit computers

Sometimes you have be realistic

Threads full of full HD pic set posts are best downloaded in small batches
if you wish to avoid meltdowns and freezes.



Why You Shouldn’t Use Firefox Forks Like Waterfox, Pale Moon, or Basilisk
by Chris Hoffman on February 22nd, 2018

Its all expanded on here

https://www.howtogeek.com/335712/upd...n-or-basilisk/
buttsie is offline   Reply With Quote
The Following 7 Users Say Thank You to buttsie For This Useful Post:
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump




All times are GMT. The time now is 10:36 AM.






vBulletin Optimisation provided by vB Optimise v2.6.1 (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.