Welcome to Geeklog, Anonymous Saturday, December 21 2024 @ 07:01 am EST
Geeklog Forums
Inmemoriam bug report
Page navigation
Status: Banned
machinari
Forum User
Full Member
Registered: 03/22/04
Posts: 1512
sr1 wouldn't affect any of this.
GD2 is bundled with PHP5, but a couple of necessary libraries may still be missing from your configuration: libpng and libjpeg at least.
See this discussion and then go to the PHP page for more info on where to obtain necessary files and how to install/configure them.
An easier solution would be to install NetPBM or ImageMagick, but I've not finished integrating that code yet...
GD2 is bundled with PHP5, but a couple of necessary libraries may still be missing from your configuration: libpng and libjpeg at least.
See this discussion and then go to the PHP page for more info on where to obtain necessary files and how to install/configure them.
An easier solution would be to install NetPBM or ImageMagick, but I've not finished integrating that code yet...
34
32
Quote
Rob
Anonymous
I can tell you that I do have gd2 installed, and am fairly sure that it works although I don't know how to test it. These other libraries seem moot however as I even tried using it with gifs and those do not display either (yes I did enable them in the inmemoriam config file) So therefore we know that php5 probably is not the issue here, and I would guess that some pople using apache2 have gotten it to work as well, but what about windows?
-Rob
-Rob
40
27
Quote
Rob
Anonymous
Also not sure if this another bug, or just one of my issues, but I can't seem to delete an album once I create one. When I try to delete it in windows it says that it is currently in use, even though there may not be anything in it, and the permissions for it are set so that everyone could delete it.
-Rob
-Rob
34
32
Quote
mach
Anonymous
Quote by Rob:When I try to delete it in windows it says that it is currently in use
that is a windows error, and has little to do with the script. perhaps the album was in use in another window or something like that. If you're using the gallery to delete an album that the gallery created, the only way you'll get that type of error is if, in fact, the directory is in use by some other windows process.I assume you're running a windows server (whatever it's called these days)? But (watch for disclaimer), I'm not a server guy so maybe one of these other gurus might have an answer.
30
23
Quote
Rob
Anonymous
Ah, so it was. That still leaves me with the minor problem of the images never displaying. I simply get a square box with a question mark inside. I'm completely baffled by this problem but would like to figure it out. I guess then the correct route to take would be to test each part individually. Can anyone post code (or a link to it) that would allow me to test to see if the gd2 plugin works? Also just to let you know I still consider myself a php newbie so go easy one me. Thanks in advance,
-Rob
-Rob
26
32
Quote
Status: offline
hatric
Forum User
Junior
Registered: 09/19/05
Posts: 22
hi, new user and I really like your gallery plug-in!
Couple questions, not really "bugs"
1. i would like to resize the text under the random picture in the menu box (Browse and Favorites links).
2. I was also wondering, in the galleries under the pics where you have the credit, size, etc. is there a way to modify that. I would like to have the captions instead.
Thanks!
Couple questions, not really "bugs"
1. i would like to resize the text under the random picture in the menu box (Browse and Favorites links).
2. I was also wondering, in the galleries under the pics where you have the credit, size, etc. is there a way to modify that. I would like to have the captions instead.
Thanks!
32
37
Quote
Status: Banned
machinari
Forum User
Full Member
Registered: 03/22/04
Posts: 1512
Quote by Rob: I'm completely baffled by this problem but would like to figure it out.
Me too, and I will continue to search for a solution until one is found--please bear with me/us.Rob, if you receive the same error as Trinity, i.e, "Fatal error: Call to undefined function: load() in ...", then the potential lack of any GD2 function/library is not the issue--yet, because the script isn't even getting to the GD extension. The problem is, for an unknown reason, that the image_transform package is not being found by the script even though it seems to be making it into the include_path--at least for the few of you.
I'm going to go rant about this in another forum and see If I can dig something up. The issue for me is that I'm not sitting at your computer where I could just check things based upon other things that I may see..
blah blah.
31
31
Quote
Status: Banned
machinari
Forum User
Full Member
Registered: 03/22/04
Posts: 1512
Quote by hatric:
1. i would like to resize the text under the random picture in the menu box (Browse and Favorites links).
find this in inmemoriam.css and edit accordingly:1. i would like to resize the text under the random picture in the menu box (Browse and Favorites links).
Text Formatted Code
#inm-phpblockrandom {font-size: .8em;
text-align: center;
}
#inm-phpblockrandom ul {
margin: 0;
padding: 0;
text-align: left;
list-style-type: none;
list-style-position: inside;
}
#inm-phpblockrandom img {
margin: 2px;
}
Quote by hatric:
2. I was also wondering, in the galleries under the pics where you have the credit, size, etc. is there a way to modify that. I would like to have the captions instead.
if you're refering to the thumbnail pages, that bit is not configurable... you will have to edit some PHP.2. I was also wondering, in the galleries under the pics where you have the credit, size, etc. is there a way to modify that. I would like to have the captions instead.
here we go. find inm_albumThumbs() in browse.php.
find the comment "begin loop".
inside that "while" loop, anywhere in the top-half, add the following line:
Text Formatted Code
$T->set_var('caption', COM_stripslashes($TH['caption']));
30
24
Quote
Hatric
Anonymous
Absolutely awesome!! Thanks so much for your help!
Any way to scale down the theme box size (eg. shade, light, rose, etc). I notice they will scale up when a long caption is put in, which is awesome!
27
28
Quote
Status: Banned
machinari
Forum User
Full Member
Registered: 03/22/04
Posts: 1512
Quote by Hatric:Any way to scale down the theme box size
not sure what you mean, but you could use max-width or max-height attributes in your CSS, but that might cause problems with rows not laying out properly however.
33
31
Quote
Rob
Anonymous
Ok I went through and I tested to see if putting an exact path into image-functions.inc would change anything, and it didn't, so then I just took the entire line out to see what would happen, and as expected I get a php error saying that it can't find the functions included in transform.php. Therefore I have to assume that the code is at least getting there to know what the functions are, which allows me to call them. Don't know if that helps any...
But I also have the complete error that I get when I attempt to view a photo in "full image" mode.
Fatal error: Call to undefined method PEAR_Error::load() in crogram FilesApache GroupApache2htdocsgeeklogpluginsinmemoriamimage-functions.inc on line 192
Hope this helps some. Will continue messing with it,
-Rob
But I also have the complete error that I get when I attempt to view a photo in "full image" mode.
Fatal error: Call to undefined method PEAR_Error::load() in crogram FilesApache GroupApache2htdocsgeeklogpluginsinmemoriamimage-functions.inc on line 192
Hope this helps some. Will continue messing with it,
-Rob
25
30
Quote
Rob
Anonymous
Also get the following error message when attempt to create static images:
Also I suppose there should have been slashes in that last post... oops.
-Rob
Text Formatted Code
Fatal error: Call to undefined method PEAR_Error::load() in C:\Program Files\Apache Group\Apache2\htdocs\geeklog\public_html\admin\plugins\inmemoriam\index.php on line 917Also I suppose there should have been slashes in that last post... oops.
-Rob
25
34
Quote
Status: offline
hatric
Forum User
Junior
Registered: 09/19/05
Posts: 22
Quote by machinari: not sure what you mean, but you could use max-width or max-height attributes in your CSS, but that might cause problems with rows not laying out properly however.
I was thinking I would like to shorten (vertically) the size of the theme area (shade, light, rose, etc.) around a thumbnail in the thumbnail pages just enough to encapsulate the thumbnail itself and the caption (from the edit you showed me earlier) and nothing more.
Hope that is a bit more clear for you.
thanks! ~hatric
31
31
Quote
Status: Banned
machinari
Forum User
Full Member
Registered: 03/22/04
Posts: 1512
I haven't looked at it, hatric, but if you remove any height specification in the .inm-thumbnail rule in your inmemoriam.css, then that should give you what you want, but be warned, your rows may not return properly after a break depending on the final height of one div compared to the next. test it out and hopefully you won't see what I mean.
31
21
Quote
Status: offline
DTrumbower
Forum User
Moderator
Registered: 01/08/03
Posts: 507
Wed 28 Sep 2005 03:30:19 PM CDT - Inserting default data into phpblock table
Wed 28 Sep 2005 03:30:19 PM CDT - 1136: Column count doesn't match value count a
t row 1. SQL in question:
Wed 28 Sep 2005 03:30:19 PM CDT - Error inserting default data into phpblock tab
le
Wed 28 Sep 2005 03:30:19 PM CDT - 1136: Column count doesn't match value count a
t row 1. SQL in question:
Wed 28 Sep 2005 03:30:19 PM CDT - Error inserting default data into phpblock tab
le
28
28
Quote
Status: Banned
machinari
Forum User
Full Member
Registered: 03/22/04
Posts: 1512
DTrumbower, Inmemoriam is not designed to be installed into the CVS version of Geeklog. When 1.3.12 comes out, the plugin will be updated.
36
34
Quote
Josh
Anonymous
When attempting to edit an album, I receive the following error:
An input validation error has occurred. Please go back and review your entries.
I was trying to set an album as a featured block for my homepage when I received the error.
Is this a file or folder security problem?
Josh ~ www.jtravis.us
An input validation error has occurred. Please go back and review your entries.
I was trying to set an album as a featured block for my homepage when I received the error.
Is this a file or folder security problem?
Josh ~ www.jtravis.us
27
33
Quote
Status: offline
DTrumbower
Forum User
Moderator
Registered: 01/08/03
Posts: 507
Quote by machinari: DTrumbower, Inmemoriam is not designed to be installed into the CVS version of Geeklog. When 1.3.12 comes out, the plugin will be updated.
I figured that out. But it's working now.
28
28
Quote
Status: Banned
machinari
Forum User
Full Member
Registered: 03/22/04
Posts: 1512
Quote by Josh: When attempting to edit an album, I receive the following error:
An input validation error has occurred. Please go back and review your entries.
...
Is this a file or folder security problem?
No, this error has only to do with the values passed by $_POST.An input validation error has occurred. Please go back and review your entries.
...
Is this a file or folder security problem?
a required value is missing, or, more likely, a hidden or required album ID has been edited or removed.
Is there any part of the album editing process that works for you? and is this error only returned when you try to set the album as featured?
33
31
Quote
Page navigation
All times are EST. The time is now 07:01 am.
- Normal Topic
- Sticky Topic
- Locked Topic
- New Post
- Sticky Topic W/ New Post
- Locked Topic W/ New Post
- View Anonymous Posts
- Able to post
- Filtered HTML Allowed
- Censored Content