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 Mark Forums Read

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


Reply
 
Thread Tools Display Modes
Old November 3rd, 2023, 08:50 PM   #411
nobadguy
Senior Member
 
Join Date: Oct 2012
Posts: 286
Thanks: 11,817
Thanked 1,535 Times in 222 Posts
nobadguy 5000+nobadguy 5000+nobadguy 5000+nobadguy 5000+nobadguy 5000+nobadguy 5000+nobadguy 5000+nobadguy 5000+nobadguy 5000+nobadguy 5000+nobadguy 5000+
Default

Did something change again with imagebam?
Neither the latest nor the older codes by beechcott work,while the latest adds them to download but doesn't find the, the older doesn't even add them.
Post I have trouble is:
http://vintage-erotica-forum.com/sho...&postcount=105
nobadguy is offline   Reply With Quote
The Following 6 Users Say Thank You to nobadguy For This Useful Post:
Old November 5th, 2023, 06:29 PM   #412
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 andrito View Post
Hi folks.

I've stumbled on a little snag with the imagehostgrabber search and url pattern posted earlier. The issue isn't in files being downloaded, as is it in the naming, and how imagehostgrabber reacts to the duplicate file names.
It seems every file is downloaded as:

o.jpg File Already Exists
Enabling "Prefix filenames to reflect page order" makes them all download correctly, although it doesn't restore the full filenames. All attempts by me to alter the code to actually get the correct filenames has failed, but being able to download them all is good enough for me, personally.

Quote:
Originally Posted by nobadguy View Post
Did something change again with imagebam?
Neither the latest nor the older codes by beechcott work,while the latest adds them to download but doesn't find the, the older doesn't even add them.
Post I have trouble is:
http://vintage-erotica-forum.com/sho...&postcount=105
Can you provide a different link? That one gives me an error saying:

Quote:
beechcott, you do not have permission to access this page. This could be due to one of several reasons:

1. Your user account may not have sufficient privileges to access this page.

Are you trying to edit someone else's post, access administrative features or some other privileged system?

2. If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.
UPDATE: I attempted to download some images from the Vintage Celebrity Gifs thread, and all of the Imagebam ones failed.

ChatGPT is starting to get very finicky when I try to use it to update ImageHost Grabber code. Most of the time, it doesn't work anymore (and for some reason has a very specific glitch in which it thinks that I'm asking questions about terrorism). So I switched to Claude.ai.

Claude.ai gave me this new search pattern for Imagebam:

Code:
function(pageData, pageUrl) {
  const imgTag = pageData.match(/<img[^>]*class="main-image"[^>]*>/i);
  
  if (imgTag) {
    const imgSrc = imgTag[0].match(/src="([^"]+)"/i);
    if (imgSrc) {
      return {
        imgUrl: imgSrc[1],
        fileName: null, // filename not available
        status: "OK"
      };
    }
  }

  return {
    imgUrl: null, 
    fileName: null,
    status: "ABORT"
  };
}
So far, it seems to be working.

UPDATE: Now that new code isn't working either.

Then I went back to this code and it's working again:

Code:
function(pageData, pageUrl) {
    let retVal = { imgUrl: null, fileName: null, status: "ABORT" };

    // Search for <img ... class="main-image ... >
    const iTag = pageData.match(/<img\b[^>]*?\bclass\s*=\s*('|")main-image\b[^>]*?>/i);

    if (iTag) {
        // Extract the image URL
        const iUrlMatch = iTag[0].match(/\bsrc\s*=\s*('|")(.*?)\1/i);
        if (iUrlMatch) {
            retVal.imgUrl = iUrlMatch[2];
            retVal.status = "OK";

            // Extract the image filename (using alt attribute)
            const iNameMatch = iTag[0].match(/\balt\s*=\s*('|")(.*?)\1/i);
            if (iNameMatch) {
                retVal.fileName = iNameMatch[2];
            }
        }
    }

    return retVal;
}

Last edited by beechcott; November 5th, 2023 at 11:11 PM..
beechcott is offline   Reply With Quote
The Following 7 Users Say Thank You to beechcott For This Useful Post:
Old December 5th, 2023, 08:43 PM   #413
venom6733
Vintage Member
 
venom6733's Avatar
 
Join Date: Mar 2016
Posts: 466
Thanks: 11,103
Thanked 10,945 Times in 475 Posts
venom6733 50000+venom6733 50000+venom6733 50000+venom6733 50000+venom6733 50000+venom6733 50000+venom6733 50000+venom6733 50000+venom6733 50000+venom6733 50000+venom6733 50000+
Default

Hey all, I was wondering if anybody has had a problem with Imagehostgrabber's 'select pics on page' coming up blank? The 'get all pics on page' & 'suck the current thread' still work but the 'select pics on page' option isnt. Im using palemoon 28.8.1 & imagehostgrabber 1.7.0.6 Ive never had a problem with this setup until now and Ive been using it for about 3 years....thanks in advance

__________________
My favorite woman of all time...


To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.
venom6733 is offline   Reply With Quote
The Following 5 Users Say Thank You to venom6733 For This Useful Post:
Old December 20th, 2023, 03:28 PM   #414
pcaca
Vintage Member
 
pcaca's Avatar
 
Join Date: Feb 2013
Location: Celebes island rain forest
Posts: 8,310
Thanks: 95,755
Thanked 138,529 Times in 8,351 Posts
pcaca 500000+pcaca 500000+pcaca 500000+pcaca 500000+pcaca 500000+pcaca 500000+pcaca 500000+pcaca 500000+pcaca 500000+pcaca 500000+pcaca 500000+
Default imagevenue file names

Folks:

Thank you for the update on imagevenue files, including the new, "ChatGPT patterns":

URL Pattern: ^https?:\/\/.*imagevenue\.com\/.*
Search Pattern: <img\s+src="([^"]+)"\s+id="main-image"

Now IHG is retrieving the files, and I don't have to use the JDownloader workaround, but I'm getting the "internal" imagevenue file names, not the correct, renamed filenames. For instance, on the Danni test page:

http://vintage-erotica-forum.com/sho...postcount=1854

I get:

ME170N7T_o.jpg
ME170N7U_o.jpg
etc.

I tried with ticked and unticked "autorename imagevenue and fapomatic files but the result is still the same: files downloaded but correct filenames not downloaded...

I use IHG on PaleMoon

Any suggestions?
pcaca is offline   Reply With Quote
The Following 5 Users Say Thank You to pcaca For This Useful Post:
Old December 20th, 2023, 03:47 PM   #415
dave123
Vintage Member
 
dave123's Avatar
 
Join Date: Jan 2009
Posts: 841
Thanks: 4,451
Thanked 31,583 Times in 839 Posts
dave123 100000+dave123 100000+dave123 100000+dave123 100000+dave123 100000+dave123 100000+dave123 100000+dave123 100000+dave123 100000+dave123 100000+dave123 100000+
Default Re: imagevenue file names

Try replacing the search pattern with this one.

Code:
function(pageData, pageUrl) {
	var retVal = {imgUrl: null, fileName: null, status: "ABORT"};
	// Search for <img ... id="main-image" ... >
	var iTag = (pageData.match(/<img\b[^>]*?\bid\s*=\s*('|")main-image\1[^>]*?>/i)||[])[0];
	if (iTag) {
		var iUrl  = (iTag.match(/\bsrc\s*=\s*('|")(.*?)\1/i)||[])[2];
		var iName = (iTag.match(/\balt\s*=\s*('|")(.*?)\1/i)||[])[2];
		if (iUrl) {
			retVal.imgUrl = iUrl;
			retVal.status = "OK";
			if (iName) {  // exists and is not empty
				retVal.fileName = iName;
			}
		}
	}
	return retVal;
}
dave123 is offline   Reply With Quote
The Following 9 Users Say Thank You to dave123 For This Useful Post:
Old December 20th, 2023, 04:25 PM   #416
pcaca
Vintage Member
 
pcaca's Avatar
 
Join Date: Feb 2013
Location: Celebes island rain forest
Posts: 8,310
Thanks: 95,755
Thanked 138,529 Times in 8,351 Posts
pcaca 500000+pcaca 500000+pcaca 500000+pcaca 500000+pcaca 500000+pcaca 500000+pcaca 500000+pcaca 500000+pcaca 500000+pcaca 500000+pcaca 500000+
Default

Quote:
Originally Posted by dave123 View Post
Try replacing the search pattern with this one....


Last edited by Jazz67; December 20th, 2023 at 06:14 PM.. Reason: trimmed quote
pcaca is offline   Reply With Quote
The Following 7 Users Say Thank You to pcaca For This Useful Post:
Old March 7th, 2024, 04:48 AM   #417
sexylauren
Member
 
sexylauren's Avatar
 
Join Date: Mar 2009
Posts: 13
Thanks: 71,428
Thanked 29 Times in 4 Posts
sexylauren 100+sexylauren 100+
Default

good day all

i have been having problems with imagefap. i use pale moon and last available ihg. i began getting only the sample pic (edged in click for better resolution) rather than the full pic about a month ago. this issue does not occur on all threads(yet).

any updates for the host file?

thanks\\lauren
sexylauren is offline   Reply With Quote
The Following 4 Users Say Thank You to sexylauren For This Useful Post:
Reply

Thread Tools
Display Modes

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 06:33 PM.






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