Page 1 of 1

Modules&Super Modules

Posted: Sun Feb 08, 2004 4:48 pm
by KoalaBear
Check the site with IE, I found the links we need:
1.Index page:
http://.../modules.php?name=gal&album=A ... dra&page=1
http://.../modules.php?name=gal&album=Banks_Tyra&page=1
...
try to find out a common pattern:
name=gal&album=Module's Name&page=
so I add this to Page URL Include Filter:

Code: Select all

name=gal&album=\w+&page=
2.Picture preview page&Picture view page:
http://.../modules.php?name=gal&file=ph ... 06&p=84347
http://.../modules.php?name=gal&file=ph ... 4347&f=474
...
the common pattern:
name=gal&file=photo
so I add this to Page URL Include Filter:

Code: Select all

name=gal&file=photo
3.The picture that we want:
http://.../gal/albums/Casta_Laetitia/20 ... /li045.jpg
http://.../gal/albums/Casta_Laetitia/34 ... /sw032.jpg
...
the common pattern:
/gal/albums/Module's Name/A random string/filename.jpg
so I add this to Picture URL Include Filter:

Code: Select all

/gal/albums/\w+/\w+/\w+\.jpg
That's it!