Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#145 2005-07-01 02:26:01
- sjames1010
- New Member
- Registered: 2005-07-01
- Posts: 2
Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups
url for download seems to be giving me a blank page?
EDIT: Sorry—-firefox was giving me problems for some reason
Last edited by sjames1010 (2005-07-01 17:52:32)
Offline
#146 2005-07-01 17:48:11
- sjames1010
- New Member
- Registered: 2005-07-01
- Posts: 2
Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups
I love this plugin!
I’m trying to use the “usearticle” and “catfield” attributes to display all images from the category with the same name as the title of the article:
usearticle=“1” catfield=“title”
but I’m getting back a php error:
Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 16 bytes) in /textpattern/lib/txplib_db.php on line 191
What’s going on here?
Last edited by sjames1010 (2005-07-01 17:48:40)
Offline
#147 2005-07-08 00:53:22
- minusf
- Member
- Registered: 2005-02-15
- Posts: 104
Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups
first of all, this plugin is great. thanks for the effort.
some issues i have but:
-on the strictest php logging level there are some undefined variables… (i, artcat, divimg)
-some warnings appeared in html validation. (unescaped &, empty span, replacing p by br)
do you want patches or do you manage? ;-) again, thanks for the great plugin.
we is experts™
Offline
#148 2005-07-08 03:51:25
Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups
In version 0.5.3, I made it a little bit more efficient by using safe_count() instead of count(safe_rows(“*”…))
here…
<code>
// DO PAGING
$where = $categories.$artcat.$obfield.’ LIMIT ‘.$offset.’,99999’;
// $results = safe_rows(‘*’, ‘txp_image’, $where);
// $numthum = count($results);
// 2005-07-07 mmanfre – more efficient
$numthum = safe_count(‘txp_image’, $where);
</code>
and here…
<code>
//NO PAGING
$where = $categories.$artcat.$obfield.’ LIMIT ‘.$offset.’,’.$limit;
// $results = safe_rows(‘*’, ‘txp_image’, $where);
// $numthum = count($results);
// 2005-07-07 mmanfre – more efficient
$numthum = safe_count(‘txp_image’, $where);
</code>
Offline
#149 2005-07-09 14:38:37
- athenas
- New Member
- Registered: 2005-07-09
- Posts: 2
Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups
hey, ive used previous versions of your plugin and i really like it, youve done an extremely good job. just recently ive been trying to get it to use on a new website ive made but i cant seem to download it from your website. ive no idea why but ive asked other people to try download it for me but they cant get it either. just thought id let you know. so you could prehaps fix whatevers up with it.
sean
Offline
#150 2005-07-09 14:43:07
Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups
i don’t have any problems downloading it. try this link: rss_thumbpop v0.5.3
Offline
#151 2005-07-10 12:10:58
Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups
i’m also using firefox. in the file, what you should see is something like this “YTo5OntzOjQ6Im5hbWUiO3…” paste that code in the install plugin box and upload it.
otherwise, try this link: rss_thumbpop_v0.5.3
Offline
#152 2005-07-19 15:42:21
- athenas
- New Member
- Registered: 2005-07-09
- Posts: 2
Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups
this doesn’t appear to validate any fixes? Thanks
….n.com/index.php?file=thumbpop<strong>&</strong>pic=21” onclick=“window.open(this.href,….
the ampersand (&) isnt validating, as netscape 3.x reads it wrong. the older versions of rssthumbpop output a ? instead of the & and that validates fine…
sean
Last edited by athenas (2005-07-21 10:33:16)
Offline
#153 2005-07-21 14:58:25
Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups
Is it possible to modify this so it pulls the image list from the articles own “Article image” field?
I’d rather display a small gallery at the end of the article with only those specific images. I would rather not create a new category for each article.
Offline
#154 2005-07-22 00:05:46
- minusf
- Member
- Registered: 2005-02-15
- Posts: 104
Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups
wilshire,
i guess you are just as busy as most of us, but i would like to ask you
that will the next version of your plugin have the 3 lines robert proposed?
it just makes php shut up on notices…
thanks
we is experts™
Offline
#155 2005-07-25 12:41:30
Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups
I am trying to get the pluing to work gut it keeps giving me this url for the image location
http://wb.silent7.com/gallery/*huimages*/2t.jpg
Its looking for the images in the wrong location. I have mine uploaded to /images/ but the plugin is looking elsewhere has anyone had this problem?
Last edited by silent7 (2005-07-25 12:42:35)
Offline
#156 2005-07-26 14:54:54
Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups
Hey Wilshire,
thanks for the great plug in. I use it in my site and appreciate it tons.
The way I would love to display the big images is with [next] [previous] sort of thing.
Right now when you click on the next thumbnail it hides the new window behind the current [main] unless you close it before hand.
Is it possible to have it so that you could flip through the big images once you called the first one?
Thanks a bunch
Last edited by skycaptain (2005-07-26 19:39:58)
Offline