First of all, Thank you so much for purchasing this script and for being a loyal customer. You are awesome!
You are entitled to get free lifetime updates to this product + exceptional support from the author directly.
This documentation is to help you regarding each step of installation and customization. Please go through the documentation carefully to understand how this script is made and how to edit it.
If you have any questions that are beyond the scope of this documentation, please feel free to leave a comment or contact me through the email above.
Be careful while editing the source code. If not edited properly, the script may break completely.
This script is built using Laravel 10, so you can check the official documentation for more details.
Upload the upload.zip archive to your server and extracting it, typically, in the /public_html folder in a shared hosting or /var/www/example.com on a VPS hosting.
Next visit the app URL in the browser and you should see the installation page. The installer wizard will guide you through the process of installing and configuring your app. This process consists of three steps: server requirements, database setup, and admin setup.
This step will ensure that all the server requirements are met before you can proceed any further.
You need a MySQL database for use with this project. If you are using cPanel this is a link to a YouTube video that will help you create a new MySql database: https://www.youtube.com/watch?v=CHwxXGPnw48.
After creating a new database, you just need to fill out the respective details in the installer.
After setting up the database, you must create the admin user. Fill in the form with the respective details and make sure your website's URL is valid. Click on the Button to complete the installation process.
If all goes well, you will be redirected to the Admin Panel. Log in with your newly created account and enjoy the app.
This script uses the php Imagick extension to convert images into different formats. By default, Imagick supports many image formats, but, depending on your server, some formats may require third-party delegate libraries or additional configurations to be fully supported by the script.
For shared hosting, supported formats depend on the hosting provider. And since you cannot install the required third-party libraries, you are stuck with the default supported formats.
With VPS, you can install needed packages and configure your server as you see fit. The most common operating systems are Ubuntu and CentOS 7. For this script, I recommend using Ubuntu 22.04 or higher.
By default, Ubuntu 22.04 can convert images to APNG, AVIF, BMP, DDS, DIB, GIF, HDR, HEIC, HEIF, ICO, JP2, JPE, JPEG, PNG, PSD, RAW, TGA, TIFF, WBMP, and WEBP.
PDF, AI, and EPS are also supported by default as output formats but are not supported as input formats. To fix that, follow these steps:
$ sudo apt install ghostscript
$ sudo nano /etc/ImageMagick-6/policy.xmlAnd change:
<policy domain="coder" rights="none" pattern="PS" /> <policy domain="coder" rights="none" pattern="PS2" /> <policy domain="coder" rights="none" pattern="PS3" /> <policy domain="coder" rights="none" pattern="EPS" /> <policy domain="coder" rights="none" pattern="PDF" /> <policy domain="coder" rights="none" pattern="XPS" />To:
<policy domain="coder" rights="read|write" pattern="PS" /> <policy domain="coder" rights="read|write" pattern="PS2" /> <policy domain="coder" rights="read|write" pattern="PS3" /> <policy domain="coder" rights="read|write" pattern="EPS" /> <policy domain="coder" rights="read|write" pattern="PDF" /> <policy domain="coder" rights="read|write" pattern="XPS" />
For SVG support, read and write, you need to install these two packages:
$ sudo apt -y install libmagickcore-6.q16-6-extra $ sudo apt install potrace
The APNG format requires the ffmpeg package:
$ sudo apt install ffmpeg
CentOS 7 is also commonly used in VPS hosting. But it's outdated and lacks support for some formats. Installing up-to-date packages on CentOS 7 often requires Remi's RPM repository. I don't recommend this OS for this script but if you know what you do, you may be able to install the required libraries for the unsupported formats.
Since not all formats supported by every server, I added the option to enable or disable any converter from the dashboard.
If you need more assistance deploying the app, please contact me via my email. I'll be glad to help.
That's all and good luck!