View Full Version : Can't see pictures or thumbs
Diver
22nd of January 2004 (Thu), 11:52
I installed EXHIBIT ENGINE 1.5 beta 4 and have evrything working, except that I can't see any of the thumbs or pictures. They are in the correct paths.
http://www.patrickgoudeau.com/my_gallery
You will see that the pictures are not there, but if you go to the direct path that EE uploaded them to, you can see them:
http://www.patrickgoudeau.com/my_gallery/Dads_Birthday/normal/2987_bikini.jpg
These images are test images.
Also, is there a setting somewhere that can be changed on what the size of a picture can be when uploading it? I can't seem to upload anything greater than 100K.
Any help with this would be appreciated.
Pekka
22nd of January 2004 (Thu), 13:47
I installed EXHIBIT ENGINE 1.5 beta 4 and have evrything working, except that I can't see any of the thumbs or pictures. They are in the correct paths.
http://www.patrickgoudeau.com/my_gallery
You will see that the pictures are not there, but if you go to the direct path that EE uploaded them to, you can see them:
http://www.patrickgoudeau.com/my_gallery/Dads_Birthday/normal/2987_bikini.jpg
These images are test images.
Could be Apache 2 problem, your PHP is 4.2.2 and Apache 2 is semi-officially supported in newest version 4.3.4 only.
http://www.php.net/manual/en/install.apache2.php
But before you update your PHP, update EE to 1.5 fix pack 2 following the instructions in http://photography-on-the.net/ee/beta/
Set also in Misc settings editor / Global settings:
When image file is not found : "1. Let browsers handle....."
Also, is there a setting somewhere that can be changed on what the size of a picture can be when uploading it? I can't seem to upload anything greater than 100K.
Any help with this would be appreciated.
If you mean upload page's STEP 1 : send photos to server upload folder: that is http upload which has size setting in php.ini
memory_limit = 8M
wkitty42
22nd of January 2004 (Thu), 15:21
Also, is there a setting somewhere that can be changed on what the size of a picture can be when uploading it? I can't seem to upload anything greater than 100K.
check in your php.ini and possibly htaccess or httpd.conf for php related upload settings...
;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;
file_uploads = On
upload_tmp_dir = "/tmp"
upload_max_filesize = 2M
the above section is from my php.ini file but i have other settings for other apps in their respective htaccess files and their virtual domain settings in the httpd.conf file(s)...
Diver
22nd of January 2004 (Thu), 18:55
Could be Apache 2 problem, your PHP is 4.2.2 and Apache 2 is semi-officially supported in newest version 4.3.4 only.
http://www.php.net/manual/en/install.apache2.php
I looked into this, but PHP version 4.3.4 ins't availabe for Linux systems based off of Red Hat Linux, so until it is available, this option is dead.
But before you update your PHP, update EE to 1.5 fix pack 2 following the instructions in http://photography-on-the.net/ee/beta/
Set also in Misc settings editor / Global settings:
When image file is not found : "1. Let browsers handle....."
I did the upgrades as listed in the post and made sure that the option: "1. Let browsers handle...." was selected and I still can't see the thumbs or the pictures.
If you mean upload page's STEP 1 : send photos to server upload folder: that is http upload which has size setting in php.ini
I checked the setting in php.ini and it is set at 8 megs, which is mor than enough to upload a picture, but I still get the following error:
Request entity too large!
The POST method does not allow the data transmitted, or the data volume exceeds the capacity limit.
If you think this is a server error, please contact the webmaster
Error 413
209.205.183.44
Thu Jan 22 18:53:11 2004
Apache/2.0.40 (Red Hat Linux)
The weird thing is that if I choose to add a picture manualy, and select #7: Click here to add a ONE new photo to database, the thumbs for the previous uploaded pics are displayed, but even though it says to select one, I can't select one at all.
Pekka
22nd of January 2004 (Thu), 19:21
Check that in php.ini
post_max_size = 8M
This is default value. Perhaps you could take standard php.ini from PHP installation pack and use that as a base. I develop EE mostly basic PHP installation in mind (accepting safe mode on/off, register_globals on/off and magic_quotes_gpc = on/off of course).
;;;;;;;;;;;;;;;;;
; Data Handling ;
;;;;;;;;;;;;;;;;;
;
; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
; The separator used in PHP generated URLs to separate arguments.
; Default is "&".
;arg_separator.output = "&"
; List of separator(s) used by PHP to parse input URLs into variables.
; Default is "&".
; NOTE: Every character in this directive is considered as separator!
;arg_separator.input = ";&"
; This directive describes the order in which PHP registers GET, POST, Cookie,
; Environment and Built-in variables (G, P, C, E & S respectively, often
; referred to as EGPCS or GPC). Registration is done from left to right, newer
; values override older values.
variables_order = "GPCS"
; Whether or not to register the EGPCS variables as global variables. You may
; want to turn this off if you don't want to clutter your scripts' global scope
; with user data. This makes most sense when coupled with track_vars - in which
; case you can access all of the GPC variables through the $HTTP_*_VARS[],
; variables.
;
; You should do your best to write your scripts so that they do not require
; register_globals to be on; Using form variables as globals can easily lead
; to possible security problems, if the code is not very well thought of.
register_globals = Off
; This directive tells PHP whether to declare the argv&argc variables (that
; would contain the GET information). If you don't use these variables, you
; should turn it off for increased performance.
register_argc_argv = Off
; Maximum size of POST data that PHP will accept.
post_max_size = 8M
; This directive is deprecated. Use variables_order instead.
gpc_order = "GPC"
; Magic quotes
;
; Magic quotes for incoming GET/POST/Cookie data.
magic_quotes_gpc = On
; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
magic_quotes_runtime = Off
; Use Sybase-style magic quotes (escape ' with '' instead of ').
magic_quotes_sybase = Off
; Automatically add files before or after any PHP document.
auto_prepend_file =
auto_append_file =
; As of 4.0b4, PHP always outputs a character encoding by default in
; the Content-type: header. To disable sending of the charset, simply
; set it to be empty.
;
; PHP's built-in default is text/html
default_mimetype = "text/html"
;default_charset = "iso-8859-1"
; Always populate the $HTTP_RAW_POST_DATA variable.
;always_populate_raw_post_data = On
vBulletin® v3.6.12, Copyright ©2000-2012, Jelsoft Enterprises Ltd.