21305 Posts in 5736 Topics by 2603 members
General Questions
SilverStripe Forums » General Questions » SOLVED uploadify strange behavior with small thumb pics
General questions about getting started with SilverStripe that don't fit in any of the categories above.
Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba, simon_w
|
Page:
1
|
Go to End | |
| Author | Topic: | 811 Views |
-
SOLVED uploadify strange behavior with small thumb pics

9 November 2011 at 8:58am
hi,
I upload or import some pics with uploadify.
The small preview pics are there, after saving the page they are gone,
please see attached file.Any idea?
thx
-
Re: SOLVED uploadify strange behavior with small thumb pics

9 November 2011 at 10:23am
Have you turned on all error reporting and checked folder permissions? Firebug is also a good idea to see javascript errors.
Cheers
Scott -
Re: SOLVED uploadify strange behavior with small thumb pics

10 November 2011 at 2:32am Last edited: 10 November 2011 2:33am
I double checked for JS errors, also with firebug, there are no ... I'm also in dev mode with error output, no errors.
It works as it should, only the small pics are not there. -
Re: SOLVED uploadify strange behavior with small thumb pics

10 November 2011 at 5:09am
update:
If I change filenames bevor upload to lowercase, the result is see attached image.
-
Re: SOLVED uploadify strange behavior with small thumb pics

10 November 2011 at 8:52am
How big are the file sizes?
Seem to recall something similar with large files sizes.
Cheers
Scott -
Re: SOLVED uploadify strange behavior with small thumb pics

10 November 2011 at 11:04pm
file sizes are between 100KB and 300KB
-
Re: SOLVED uploadify strange behavior with small thumb pics

11 November 2011 at 4:54am
I solved that thing
Before:
class MyImage extends File {
static $has_one = array (
'Produkt' => 'Produkt'
);}
After:
class MyImage extends Image {
static $has_one = array (
'Produkt' => 'Produkt'
);}
I used wrong class (File) instead of Image.
| 811 Views | ||
|
Page:
1
|
Go to Top |


