Quantum Manager | NorrNext Documentation
DocumentationQuantum Manager
  • 🚀Getting started
  • 🛠️Configuration
    • General
    • Images
    • Profiles
    • Permissions
  • Editor Button
  • Replacement of standard Media Manager
  • FAQ
  • 📚Best Practices
    • Scopes
    • Override parameters via Profiles
    • How to automatically create a folder for a user and limit access
    • How to automatically create folders with the current date
    • Long file names and transliteration
    • Image processing during the upload
    • Use of high-quality photos with a free license
Powered by GitBook
On this page
  1. Best Practices

Image processing during the upload

PreviousLong file names and transliterationNextUse of high-quality photos with a free license

Last updated 2 years ago

It often happens the situation when a user uploads photos directly from the camera. Such images have a big size and significantly slow down site performance.

Enable images auto resizing

Automatically image resizing - after enabling this param the image will be resized according to the width and height which you need to set up in settings.

But keep in mind that uploading big files and processing them require more resources. Therefore allocate more memory for scripts executing in .htaccess file and also specify a maximum upload file size.

How to configure?

For Apache server you can apply the following rules to .htaccess file:

php_value memory_limit 256M
php_value upload_max_filesize 50M
php_value post_max_size 50M

You can change these limits personally according to your requirements and server resource.

Additional tutorial:

📚
How to check PHP memory limit for Joomla
Enable images auto resizing - Quantum Manager