RefreshCapcha

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - CuF

Pages: 1 ... 4 5 6 [7] 8 9 10 ... 15
91
Tough fight, but here is AsianDVDClub.

Edit: And of limited interest, MouseBits

RuTracker seems to work MOST of the time.  Still a problem where it gets confused if you do a search then log in with your browser and then try to use BitChe again.  

It's otherwise fine, I don't know if we'd consider it ready for release though.
Its sister site Pornolab seems to be even more cranky.

HDBits is whatever that's about and that's really the end of my list.

Btw, I'd love to add bit-hdtv.com to Bit Che if I had an invite.  ;)
One of the few sites where I let an account lapse and really regretted it.

Edit2: Attached MouseBits script updated to fix garbage result for 0 hits.

92
thanks.. got those scripts included.

i see what you're saying about viewing extra info after the initial search.. I might bake that into 'View Torrent Details'.. actually that would probably be pretty easy.   BUT, what is better than that is using the 'Scrape' button on 'View Torrent Details' to fetch the actual seeders/leechers from the tracker itself (new to Bit Che 2).

for AsianDVD, i got your PM and that is helpful to see the valid response, but now I just need to see what Bit Che is sending & receiving... I'm pretty sure I can figure out whats wrong now that I have the successful HTTP request if you can also send me the logs generated by Bit Che (either build 38 or 39).

for HDBits, and others, the [special] section is no longer needed.. just use the [login] part like the others..

so for thebox.bz, this can be removed:
Code: [Select]
[special]
page=http://www.thebox.bz/login.php
post=http://www.thebox.bz/login.php
img_src=freecap.php
id_name=freecap
check_name=word

for special, all it needs is:

[scripts]
pwd=1
special=1

and

[login]
login=URL
failed=
failed2=


i'll have to write up better script header info this week.

oh, but for HDBits, I wonder if a normal login will work with b38/39.. is that 'lol' variable random or can you put anything as that when you submit the login?    also, can you successfully login using 'special' for hdbits? like can you login and then go to the browse page inside of the special window?

I hadn't noticed the scrape.  Cool.

AsianDVD log emailed.

That's good about special.  I don't even know what the
Code: [Select]
img_src=freecap.php
id_name=freecap
check_name=word
stuff meant.  :)

And yes, I can browse the torrents inside the Special window for HDBits.
And the LoL code seems to change each time you refresh the login page.  I assume that's a security measure.

More scripts: MySpleen and SDBits (sister site to HDBits, but not as tricky to script).

93
Instead could we allow a special character for dummy seed/leeches?  Something like # or -1 so you can tell from the results that the real number is unknown?

Attached is Torrentzone (a site that couldn't work with v1) and Karagarga.

I have one more site I still want to convert to v2, and then there are a handful of 'problem' scripts left.
After that I'll probably do some requests.

There are something like a dozen more scripts left in my v1 folder (some are duplicates or variations) that have no v2 equivalent.  I have no idea if there is interest or in fact if those sites sill exist.  I don't recall using them.

Edit: Maybe not =code($page,#) for each item, but perhaps a way to pull multiple pieces of data during the initial search using the same code2.

Something like:

Code: [Select]
[code1]
...
$torrent=code($page,2)
$date=code($page,2)
$seeds=code($page,2)
$leeches=code($page,2)
aloop
[/code1]

[code2]
u=find(u,@data,`Download torrent`)
$torrent=extract(u,@data,`"`,`"`,@home)
u=find(u,@data,`Posted on`)
$date=extract(u,@data,`>",`<`)
u=find(u,@data,`Seeding`)
$seeds=extract(u,@data,`>",`<`)
u=find(u,@data,`Leeching`)
$leeches=extract(u,@data,`>",`<`)
[/code2]

The problem is at the moment code2 isn't read until you attempt to grab the .torrent file.  Using it for anything else won't trigger code2.
Then you're only looking at 1 additional page for each result... put that's still kind of a lot.

Okay, now this is the late night talking, but allow the above code, but don't actually fetch the results on the initial search.
The results page would show something like an * in place of the data, and then you could add a context option to get the additional data on a single basis.

Like 'View Torrent Details' but 'View additional info'.

94
I'm not actually familiar with Take.fm, but I noticed it was generating a bad result named "//" if it had no hits.
Checking it, it also didn't seem to grab every hit either.

Script updated.  It's sort of a shame we can't use something =code($page,#) for seeds, leeches and dates.

I guess we have to settle for 1:1 for all results from Take.fm (until Bit Che v3 ;) ).

95
Seems basic, but do you have a firewall that might be blocking Bit Che?

96
Scripts & Development / Re: Bit Che - Adult Scripts
« on: January 19, 2013, 04:21:23 pm »
Webop script for v2.  Better filtering of garbage results and dates are now found and passed with the results.  I think I did something else, but I can't remember what it is atm.

97
Ran into a rough patch with the scripts I was working with so I figured I'd post the ones that are working so far.

Pirate Bay members script, BakaBT (updated to include Alternative Version results), BitHq.org, TheBox.bz and TheEmpire.bz.

98
Some results tend to have junk between results that gives results that have to be filtered later, some websites have no ability to filter dead torrents from results, etc.

Should script writers shrug this off or is it preferred that if... and loop be used to test and remove known issues with a site.

Zero seeder results CAN be filtered by the script, but I suppose some people may want those results so they can find them in the 'removed' window.

Just thinking out loud mostly.  Opinions?

99
Bug in Build 36:

Under some conditions if you use t=array(@q,1) and that array is blank, the variable is deleted and doesn't appear the next time =array(@q,n) is used.
This is causing the next loop's results to be removed.

For example:
Using my BakaBT script (attached) that works with Build 35 but not 36 and searching "Ghost Shell Innocence", there should be 4 results.

Loop 1: Finds 1080p version
Loop 2: Finds only the text "Alternate Versions:" and loops
Loop 3: t=array(@q,0) is checked but empty (removing the variable 't' in the debugger window), t=array(@q,1) does not get the data from @q(1)

This works properly in Build 35.

Found in Build 35 and 36:
If you click in Bit Che's results area, it will occasionally anchor a select region box.  Can't be more specific, sorry.

100
Sorry, to be slow to get back to you, I was stuck with jury duty the last few days.

I'll test the new version and see if that fixes what's been ailing my scripts as soon as I can.
Does the malformed seeder fix also effect malformed leeches?  It occurred for both.

101
Found a possible bug.

When using $seeds=array(@q,4) on a site, if there are no seeds the array has: -&nbsp;-&nbsp;-  (which appears as --- on the results page)

The debugger properly shows that 0 seeds are found, but the main Bit Che results window returns the number found on the previous loop.
The same happens for 0 leeches.

For now it's easy enough to do a replace of -&nbsp;-&nbsp;- with 0 in the script, but it should probably be fixed.


Also, is Bit Che+ suppose to be able to handle .torrent links that redirect?  Having an issue with that as well.

The link is properly found by BC, but clicking download gives an error.  Copying the URL to the clipboard and pasting in the browser will download the .torrent file.  Not sure if that's a bug, or what the proper handling should be in the script.

I found both these issues on my AsianDVDClub script.

102
Scripts & Development / Re: Version 2 Date Standardization
« on: January 12, 2013, 05:58:38 am »
I'd think the only way to make it work is to add $month, $day and $year.
Then whoever writes the script can make the results fit.

Although anything xx days ago would need some math thrown in to the script to calculate from the current date... okay maybe not.  Now my head hurts.

103
Scripts & Development / Re: HDBits logon problem.
« on: January 12, 2013, 05:55:25 am »
I also update the rutracker.org script.  Had trouble getting it to log in.

Finally it did (not sure what I changed that made a difference).  Did a few searches and then it stopped logging in properly again.

I tried going by way of special=1 just to fix a bug in the search for now and that still fails.

Both of these, even when set to special login, a search will only retrieve the login page.  Maybe something changed and I'm doing it wrong.

Is it just this to use special login?

Code: [Select]
[script]
name=rutracker.org
source=rutracker
author=CuF
modified=2013/01/11 by CuF
version=2
pwd=1

[home]
1=http://rutracker.org

[profiles]
all=/forum/tracker.php?nm=%SEARCH%

[login]
login=http://login.rutracker.org/forum/login.php

104
Scripts & Development / HDBits logon problem.
« on: January 12, 2013, 03:49:41 am »
Trying a standard login fails.  I believe it's because there is a unique code generated each time you go to the login page that must be passed with the name/pass.
Code: [Select]
<input type="hidden" name="lol" value="9ef07eb08afd6ce379e755716c9919bc" />The value changes every time you refresh the page.

I tried special login by adding 'special=1' in the [script] section, but when BC tries a search it only loads the login page, not the search page.

Is there any reason the special login might fail?

105
Scripts & Development / Re: Trying to write v2 script for BakaBT
« on: January 12, 2013, 02:57:05 am »
Yes, your script does work.

I just had noticed the weird formatting for the 'alternative versions' and spent some time faffing about to get those to come up too.
It's a weird thing.  They'll only have one listing for any item, and all other encodings are just footnotes.

Pages: 1 ... 4 5 6 [7] 8 9 10 ... 15