Modules&Super Modules

Post your most proud projects on the forum to share with other PicaLoader enthusiasts.
(NO adult contents and advertisement please).
[ALL PICTURE'S COPYRIGHTS BELONG TO THEIR ORIGINAL OWNERS!]
Post Reply
User avatar
KoalaBear
Posts: 325
Joined: Wed Sep 24, 2003 5:27 pm

Modules&Super Modules

Post 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!
Attachments
Screenshot.
Screenshot.
modules.plp
The project file.
(9.29 KiB) Downloaded 1092 times
Post Reply