bboymega / File2PNG-Web

File2PNG Web Application

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

File2PNG Web Application

This project is a front-end web application based on rekcuFniarB/File2PNG.

a1

Installation Guide

Download the release archive & extract to the server root (Usually /var/www for Linux).

Grant execution access to the backend scripts located in the script folder.

chmod +x /path_of_project/scripts/*

Enable rewrite mode for apache2 and make sure .htaccess is working.

a2enmod rewrite

Configure the crontab of the server to set processed temporary files deleted automatically after a period of time. (crontab file in the root of the repository can be used as reference).

# Delete temp files in 2 hours

*/5 * * * * find /var/www/file2png/public/tmp -type f -mmin +120 -delete
*/5 * * * * find /var/www/file2png/public/tmp_output -type f -mmin +120 -delete

About

File2PNG Web Application

License:GNU General Public License v3.0


Languages

Language:Shell 53.9%Language:PHP 34.5%Language:JavaScript 11.7%