![]() |
VOOZH | about |
Follow @symextensions for updates to the 412 extensions that we track. What is this?
Symphony Extensions tracks Symphony CMS extensions that are hosted on Github.
Host your extension on Github and make sure the repository has a good README and an extension.meta.xml file. Then sign in to this site using your GitHub profile where you will see a list of your public repositories. Pick one, and add it to the site. When you make changes, just update the XML file in your repository and we do the rest.
It is an XML file that you add to your repository to describe your extension. You can include a name and description, developer contact details, version history, changelog, dependencies and more. Please read the documentation for a full list. You can use the lint tool to check your XML against the schema before submitting your extension to the site.
This site is now run by the community @symextensions. The site was created by nickdunn. Contact him at @nickdunn
Please report it here.
Custom functionalities for the upload field (frontend/backend).
Clone URLhttps://github.com/tiloschroeder/upload_fix_jpeg_orientation.git
Add as a submodulegit submodule add https://github.com/tiloschroeder/upload_fix_jpeg_orientation.git extensions/upload_fix_jpeg_orientation --recursive
| 2.x.x | 2.1.x | 2.2.x | 2.3.x | 2.4.x | 2.5.x | 2.6.x | 2.7.0 | 2.7.1 | 2.7.2 | 2.7.3 | 2.7.4 | 2.7.5 | 2.7.6 | 2.7.7 | 2.7.8 | 2.7.9 | 2.7.10 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| No | No | No | No | No | No | No | 1.0.2 | 1.0.2 | 1.0.2 | 1.0.2 | 1.0.2 | 1.0.2 | 1.0.2 | 1.0.2 | 1.0.2 | 1.0.2 | 1.0.2 |
| Symphony Version | Extension version |
|---|---|
| 2.7.10 | 1.0.2 |
| 2.7.9 | 1.0.2 |
| 2.7.8 | 1.0.2 |
| 2.7.7 | 1.0.2 |
| 2.7.6 | 1.0.2 |
| 2.7.5 | 1.0.2 |
| 2.7.4 | 1.0.2 |
| 2.7.3 | 1.0.2 |
| 2.7.2 | 1.0.2 |
| 2.7.1 | 1.0.2 |
| 2.7.0 | 1.0.2 |
| 2.6.x | No |
| 2.5.x | No |
| 2.4.x | No |
| 2.3.x | No |
| 2.2.x | No |
| 2.1.x | No |
| 2.x.x | No |
This extension fixes the orientation of pictures with EXIF headers. It works in frontend and backend with the Symphony Upload field and the extension Field: Unique File Upload.
Note: This extension requires a little hack (use at your own risk).
To get this extension to work, it needs a delegate in the upload function of Symphony (What is a delegate?).
symphony/lib/toolkit and open the file class.general.php.line 1468 insert the following line:
php
Symphony::ExtensionManager()->notifyMembers('ManipulateTmpFile', class_exists('Administration', false) ? '/backend/' : '/frontend/', array('tmp' => $tmp_name,));Note: If you upgrade Symphony to a newer version and forget to re-insert the delegate, this extension will do nothing.
1.0.201 July 2019
Symphony 2.7.0 to 2.7.x
- Bug fix for uploaded images with corrupt header
1.0.108 April 2019
Symphony 2.7.0 to 2.7.x
- Edit readme
1.0.007 April 2019
Symphony 2.7.0 to 2.7.x
- Initial release