Go Back   FlashFXP Forums > > > >

Reply
 
Thread Tools Rating: Thread Rating: 6 votes, 5.00 average. Display Modes
Old 01-16-2005, 08:40 AM   #91
wicked
Junior Member
 
Join Date: Jan 2004
Posts: 5
Default

wow, thats a lot of new stuff! great work dude, time to install it
wicked is offline   Reply With Quote
Old 02-21-2005, 09:09 AM   #92
LSD
Junior Member
 
Join Date: Jul 2003
Posts: 6
Default

heh kinda cool script, thx bro


works fine here
LSD is offline   Reply With Quote
Old 03-12-2005, 09:53 AM   #93
slappen
Junior Member
 
Join Date: Mar 2005
Posts: 2
Default Cant get it to work like i want.

Have tried to get the output directly from !ep 24 to:
<bot> Last 24: Day 4: 6:00 P.M.-7:00 P.M. (4x12) . . . Air Date: Mon, March 7, 2005 (5 days ago)
<bot> Next Day 4: 7:00 P.M.-8:00 P.M. (4x13) . . . Air Date: Mon, March 14, 2005 (2 days remaining)

but when i do !ep 24 i get:

<bot> => Found 7 shows matching "24". Shown max. first 1 shows.
<bot> Exact match: 24 (_24)
<bot> Results: 24 (_24)
<bot> --=----- Use "!ep -id <text in parentheses>" to get info ------=--

and then i have to do a !ep -id _24.

What can i do to get the last and next direct??

Sry if there is a post about this already have read the whole post but maby i missed.
slappen is offline   Reply With Quote
Old 03-13-2005, 03:47 PM   #94
f0xn3t
Member
ioFTPD Scripter
 
Join Date: Jul 2004
Posts: 55
Default Re: Cant get it to work like i want.

Quote:
Originally posted by slappen
Have tried to get the output directly from !ep 24 to:
<bot> Last 24: Day 4: 6:00 P.M.-7:00 P.M. (4x12) . . . Air Date: Mon, March 7, 2005 (5 days ago)
<bot> Next Day 4: 7:00 P.M.-8:00 P.M. (4x13) . . . Air Date: Mon, March 14, 2005 (2 days remaining)

but when i do !ep 24 i get:

<bot> => Found 7 shows matching "24". Shown max. first 1 shows.
<bot> Exact match: 24 (_24)
<bot> Results: 24 (_24)
<bot> --=----- Use "!ep -id <text in parentheses>" to get info ------=--

and then i have to do a !ep -id _24.

What can i do to get the last and next direct??

Sry if there is a post about this already have read the whole post but maby i missed.
In fact, it's not possible, because when you enter "24" tvtome.com returns 7 shows and script is not set to take the first show in search results, but shows search results and user have to specify which show he really wants.

Maybe I could add to the configuration part whether it should show search results, or take exact match or first result.

Now I can't help you anyway because it needs many changes in script ... wait for v4.1
f0xn3t is offline   Reply With Quote
Old 03-16-2005, 04:57 PM   #95
MessyR
Junior Member
 
Join Date: Jan 2005
Posts: 5
Default

Title: Bad Request >> URL: http://epguides.com/<table width=100% border=0 cellpadding=0 cellspacing=0><tr><td bgcolor=#3366cc><img width=1 height=1 alt=""></td></tr></table><table width=100% border=0 cellpadding=0 cellspacing=0 bgcolor=#e5ecf9><tr><td bgcolor=#e5ecf9 nowrap><font size=+1>%epgurlnbsp;Web</font>%epgurlnbsp;</td><td bgcolor=#e5ecf9 align=right nowrap><font size=-1 color=>Results 1 - 10 of about 46 from epguides.


Worked fine yesterday anyone any ideas what this error can be?
MessyR is offline   Reply With Quote
Old 03-19-2005, 01:53 AM   #96
f0xn3t
Member
ioFTPD Scripter
 
Join Date: Jul 2004
Posts: 55
Default

Quote:
Originally posted by MessyR
Title: Bad Request >> URL: http://epguides.com/<table width=100% border=0 cellpadding=0 cellspacing=0><tr><td bgcolor=#3366cc><img width=1 height=1 alt=""></td></tr></table><table width=100% border=0 cellpadding=0 cellspacing=0 bgcolor=#e5ecf9><tr><td bgcolor=#e5ecf9 nowrap><font size=+1>%epgurlnbsp;Web</font>%epgurlnbsp;</td><td bgcolor=#e5ecf9 align=right nowrap><font size=-1 color=>Results 1 - 10 of about 46 from epguides.


Worked fine yesterday anyone any ideas what this error can be?
it's a problem of google.com which put almost whole page code into one line, so it's damn hard to parse it... BUT as I've seen some other epguides.com scripts use the OLD search script on epguides.com which works again... so, in upcoming v4.1 EPGuru will use again epguides.com searching.. IT MEANS ALL PREVIOUS VERSIONS WORK AGAIN !! if you like them

but back to the problem... here is a temp fix:
find this text in the script:
Code:
		if {[catch {set token [::http::geturl http://www.google.com/search?hl=en&q=site%3Aepguides.com&q=$name -timeout 30000]}]} {
			putserv "$resperror :\[\002EPGuru\002\] ERR#40 - Connection problems with www.google.com! No data received."
			return "NONE"
		}

		set page ""

		if {[::http::ncode $token] == 404} {
			putserv "$resperror :\[\002EPGuru\002\] ERR#41 - Page was NOT FOUND at www.google.com!"
			::http::cleanup $token
			return "NONE"
		}

		foreach line [split [::http::data $token] "\n"] {
			if {[regexp {<br><font color=.*008000>epguides.com/.*/ {1}- {1}.*</font><nobr>.*} $line] } {
				regsub {<br><font color=.*008000>epguides.com/(.*)/ {1}- {1}.*</font><nobr>.*} $line {\1} page
				regsub -all "<b>" $page "" page
				regsub -all "</b>" $page "" page

				set page "$page/"
				break
			}
		}
and replace with this one:
Code:
		if {[catch {set token [::http::geturl http://epguides.master.com/texis/master/search/?q=$name -timeout 30000]}]} {
			putserv "$resperror :\[\002EPGuru\002\] ERR#40 - Connection problems with www.epguides.com! No data received."
			return "NONE"
		}

		set page ""

		if {[::http::ncode $token] == 404} {
			putserv "$resperror :\[\002EPGuru\002\] ERR#41 - Page was NOT FOUND at www.epguides.com!"
			::http::cleanup $token
			return "NONE"
		}

		foreach line [split [::http::data $token] "\n"] {
			if {[regexp "<b>URL:</b> <FONT SIZE=-1>" $line] } {
				regsub "<b>URL:</b> <FONT SIZE=-1>" $line " " page
				set page [string trim $page]
				regsub {http://epguides.com/(.*)} $page {\1} page
				if {[regexp {[[:alpha:]]/guide.shtml} $page]} {
					regsub {(.*)guide.shtml} $page {\1} page
				}
				break
			}
		}
f0xn3t is offline   Reply With Quote
Old 03-29-2005, 06:34 PM   #97
MessyR
Junior Member
 
Join Date: Jan 2005
Posts: 5
Default

awesome m8 thx alot works perfect again tnx alot
MessyR is offline   Reply With Quote
Old 05-01-2005, 05:56 PM   #98
djdeluxe76
Member
 
Join Date: Mar 2005
Posts: 43
Smile

just wanted to thank you for so much work and such a nice script!

Thanks
DJ
djdeluxe76 is offline   Reply With Quote
Old 05-13-2005, 04:19 AM   #99
Taz Man
Junior Member
 
Join Date: May 2005
Posts: 1
Default

Curious if others are having probs with S##E## flag not responding?? As in, no matter what I set it to (1, 2, or 3) it always responds in the format #X##??
Taz Man is offline   Reply With Quote
Old 05-15-2005, 01:05 AM   #100
SIGGI_
Junior Member
ioFTPD Foundation User
 
Join Date: Oct 2004
Posts: 8
Default

is it possible to get like mini version of this script
that will only show when next Episode and last was
like
!ep 24

Last episode of 24 was aired date..
Next episode of 24 is date ................

SIGGI_ is offline   Reply With Quote
Old 06-01-2005, 07:00 AM   #101
f0xn3t
Member
ioFTPD Scripter
 
Join Date: Jul 2004
Posts: 55
Default Re:

Quote:
Originally posted by SIGGI_
is it possible to get like mini version of this script
that will only show when next Episode and last was
like
!ep 24

Last episode of 24 was aired date..
Next episode of 24 is date ................

not a bad idea it's true that the script is quite huge... I'll see...

Now I plan to release only EPGuru v4.1 within a month with some fixes, etc.
f0xn3t is offline   Reply With Quote
Old 07-15-2005, 08:22 AM   #102
f0xn3t
Member
ioFTPD Scripter
 
Join Date: Jul 2004
Posts: 55
Exclamation !!! Important !!!

Well, Tvtome.com has completely changed, so the tvtome.com part of the script is completely unusable So, please, use epguides.com part.
I still don't know whether i should write tvtome.com part again or not, but the fact is that most of the work is done and now it's just a question of parsing the page. I'll see...
f0xn3t is offline   Reply With Quote
Old 07-28-2005, 07:23 PM   #103
slappen
Junior Member
 
Join Date: Mar 2005
Posts: 2
Default will there still be a 4.1??

still waiting for it
slappen is offline   Reply With Quote
Old 08-01-2005, 12:37 PM   #104
f0xn3t
Member
ioFTPD Scripter
 
Join Date: Jul 2004
Posts: 55
Thumbs up

Quote:
Originally Posted by slappen
still waiting for it
well, I'm 70% done I've improved most parts of the script and have had to make fixes for some tv.com bugs, especially in search engine (they have still a lot of work on it, meantime their engine sux

I've decided to release tv.com script as EPGuru2 (only show and episode guide, not person guide, because tv.com's person db really sux as well
old EPGuru as v5 will have only EPGuides.com, NFOrce.nl, TVShowsOnDVD.com
But it's gonna be possible use both scripts

...AND I have a surprise for ioftpd and glftpd owners EPGuru2FTP script for sitebot which will announce info on NEWDIR or PRE like IMDB does, but fully customizable like EPGuru2, I think better than PSXC-IMDB script let me know than

That's all for now Check this topic soon again
f0xn3t is offline   Reply With Quote
Old 10-06-2005, 12:22 PM   #105
ekdp
Junior Member
ioFTPD Foundation User
 
Join Date: Aug 2004
Posts: 5
Default

What ever happend to this ?
ekdp is offline   Reply With Quote
Reply

Tags
bugs, download, integration, script, v2.0


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 Off
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 03:09 AM.

Parts of this site powered by vBulletin Mods & Addons from DragonByte Technologies Ltd. (Details)