.jpg pictures not displayed in TYPOlight CMS


 
Thread Tools Search this Thread
Top Forums Web Development .jpg pictures not displayed in TYPOlight CMS
# 1  
Old 12-14-2013
.jpg pictures not displayed in TYPOlight CMS

Dear colleagues,

for four days now all .jpg pictures are displayed as black rectangles in a web site built with a pre- 3.2.2 TYPOlight CMS (yes I know, there's more recent versions out there). It doesn't matter if they are accessed via the normal web site or the TYPOlight backend (management) system. If downloaded, pictures display as usual, without any problem. This indicates that the files exist and are OK; it may be a transfer or rendering problem.
Pictures in .png or .gif format are being displayed correctly.

I'm running out of ideas - any clues?
Cheers
Rüdiger
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Fedora view iphone pictures

Can anyone tell me how to view fedora iphone pictures? I keep getting this message. (0 Replies)
Discussion started by: cokedude
0 Replies

2. Shell Programming and Scripting

Rename all ".JPG" files to ".jpg" under all subfolders...

Hi, Dear all: One question ! ^_^ I'm using bash under Ubuntu 9.10. My question is not to rename all ".JPG" files to ".jpg" in a single folder, but to rename all ".JPG" files to ".jpg" in all subfolders. To rename all ".JPG" to ".jpg" in a single folder, for x in *.JPG; do mv "$x"... (7 Replies)
Discussion started by: jiapei100
7 Replies

3. Ubuntu

Ubuntu pictures album

Right here on the Unix and Linux forums. Okay, there's one PC-BSD promo pic, but I think that can be overlooked. Right? BZT (0 Replies)
Discussion started by: SilversleevesX
0 Replies

4. UNIX for Dummies Questions & Answers

How do I send pictures in email?

I know how send a html page through mailx, but how do I show the pictures(gif,jpeg,etc.) in the email? (4 Replies)
Discussion started by: Thomas
4 Replies
Login or Register to Ask a Question
RECOVERJPEG(1)							   User Commands						    RECOVERJPEG(1)

NAME
recoverjpeg - recover jpeg pictures from a filesystem image SYNOPSIS
recoverjpeg [options] device DESCRIPTION
Recoverjpeg tries to identify jpeg pictures from a filesystem image. To achieve this goal, it scans the filesystem image and looks for a jpeg structure at blocks starting at 512 bytes boundaries. Salvaged jpeg pictures are stored by default under the name imageXXXXX.jpg where XXXXX is a five digit number starting at zero. If there are more than 100,000 recovered pictures, recoverjpeg will start using six figures numbers and more as soon as needed, but the 100,000 first ones will use a five figures number. Options -f and -i can override this behaviour. OPTIONS
-h Display an help message. -b blocksize Set the size of blocks in bytes. On most file systems, setting it to 512 (the default) will work fine as any large file will be stored on 512 bytes boundaries. Setting it to 1 maximize the chances of finding very small files if the filesystems aggregates them (UFS for example) at the expense of a much longer running time. -f formatstring Set the filename format string (printf-style, default: "image%05d.jpg"). It is used with the image index as an integer argument. -i integerindex Set the initial index value for image numbering (default: 0). -m maxsize Maximum size of extract jpeg files. If a file would be larger than that, it is discarded. The default is 6 MiB. -q Be quiet and do not display anything. -r readsize Set the readsize in bytes. By default, this is 128 MiB. Using a large readsize reduces the number of system calls but consumes more memory. The readsize will automatically be adjusted to be a multiple of the system page size. It must be greater than the maxsize parameter. -v Be verbose and describes the process of jpeg identification. By default, if this flag is not used, recoverjpeg will print a progress bar showing how much it has analyzed already and how many jpeg pictures have been recovered. All the sizes may be suffixed by a k, m or g letter to indicate KiB, MiB or GiB. For example, 6m correspond to 6 MiB (6291456 bytes). EXAMPLES
Recover as many pictures as possible from the memory card located in /dev/sdc: recoverjpeg /dev/sdc Recover as many pictures as possible from a crashed ReiserFS file system (which does not necessarily store pictures at block boundaries) in /dev/hdb1: recoverjpeg -b 1 /dev/hdb1 Do the same thing in a memory constrained environment where no more than 16MB of RAM can be used for the operation: recoverjpeg -b 1 -r 16m /dev/hdb1 AUTHOR
Recoverjpeg has been written by Samuel Tardieu <sam@rfc1149.net>. If recoverjpeg saves your day and you liked it, you are welcome to send me the best rescued ones by email (please send only 800x600 ver- sions of the pictures) and authorize me to put them online (indicate which contact information you want me to use for credits). COPYRIGHT
Copyright (c) 2004-2010 Samuel Tardieu <sam@rfc1149.net> This is free software; see the source for copying conditions. There is NO war- ranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. SEE ALSO
recovermov(1), sort-pictures(1) KNOWN BUGS
Recoverjpeg does not include a complete jpeg parser. You may need to use sort-pictures afterwards to identify bogus pictures. Some pictures may be corrupted but have a correct structure; in this case, the image may be garbled. There is no automated way to detect those pictures with a 100% success rate. recoverjpeg January 2010 RECOVERJPEG(1)