Changelog:
Improvements on slideshow:
Improvements on image orientation correction at image uploading:
Some remarks regarding which image library to use for Tidypics:
View iionly's plugins
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
sry. file and avatar upload works,and no other elgg installation online ,open base dir ok .
some other idea?
@Gexor: try installing Tidypics again (disable the plugin, delete the whole folder, install the folder again and the re-enable). Maybe some files were not correctly installed (either missing or incomplete). If this is the case, it will hopefully work when installing Tidypics again. Apart from that I currently have no ideas.
Have you increased post_max_size in .htaccess in the meantime? Maybe a wild guess but if it's too small it could explain why the upload fails.
ok i found the fix for me.
i set the open_base dir in plesk for the domain from (docroot /: tmp /) have openbase off completely
and it works.
@Gexor: maybe some paths were missing in the list of allowed open_basedir directories. I don't use open_basedir myself, so I can't say much about what has to be included. But it seems to me the path to the data directory was missing (though I'm not sure if it's necessary to be included) and most likely also the path to the imagick executables was missing. Maybe some php packages are also in a path that was not included.
new question about error to many pixels where can I change the settings
have now found the error why no pictures uploaded, I have gradually all plgins activated and in German Language Pack for Elgg 1.9 1.9.0-RC.1 activation, pictures were uploaded but not only displayed a window with cross
@Gexor: the "too many pixels" error occurs if there's not enough memory available for creating the image thumbnails. This happens most likely due to using the GD image library. The GD libraries memory requirement is directly connected to image resolution (not image file size). If possible, use either the imagick php extension or ImageMagick image libraries. Both will require much less memory. But the imagick php extension or the ImageMagick package will have to be installed on the server to be able to use them. For the GD library you could increase the memory_limit in Elgg's .htaccess file. But this won't fix the problem once and for all but only allow uploading of slightly larger images.
Language file problem on Elgg 1.9 with images not showing up: have you modified any of the language files yourself? If you did, you have most likely saved it with wrong encoding, i.e. with BOMs (Byte Order Marks). The correct encoding is "UTF-8 without BOMs". If you didn't modify any of the files, something might have gone wrong on installing the German language pack plugin (incomplete file?). You could re-install the plugin on the server. If the problem still occurs will the unmodified files after re-installing, it would help me to know which single language file might cause the problem. If you could narrow down the problem with images not showing to a single language file, I can check it out and possibly fix the issue much faster.
Hi,,i change only this line
'elgg:powered' => "Community-Seite erstellt mit Elgg", <------ to
---> 'elgg:powered' => "some text", and pictures dont work
only the original line 'elgg:powered' => "Community-Seite erstellt mit Elgg", works
i change the name in language plugin of you from de.php to de.phpold and use only the de.php in elgg works fine
It's not necessarily what you change in the line that results in the error but the encoding your editor saves the file with. If the encoding includes Byte Order Marks (which are invisible characters) this will cause the problem. The problem will happen with ANY file you change using the wrong encoding.Try using another editor that allows you to select the encoding when saving text files (i.e. using UTF-8 without BOMs). My guess is you are editing the files on some Windows OS. So, you might want to try http://notepad-plus-plus.org/.
By changing the file name (changing the ending) the language file will no longer get loaded. Currently, the German languages files bundled with Elgg 1.9 are EXACTLY the same as included in the German language pack. I'm providing the German translations for Elgg 1.9 based on the German language pack. Still, if you want to change some language string - regardless if editing a core language file or any language file included in a 3rd party plugin - you need to make sure that you save the file without BOMs.
Ok thx utf-8 was the problem i use notepad++ many time and not to edit with filezilla :-( editor from windows save as ansi "DAMN"
Thx 4 help
@Gexor: I'm glad you got it fixed.