An open API service indexing awesome lists of open source software.

https://github.com/bboymega/file2png-web

File2PNG Web Application
https://github.com/bboymega/file2png-web

cryptography encoding encryption-decryption file fileprocessing front-end php png-decoder png-encoder webapplication website

Last synced: 20 days ago
JSON representation

File2PNG Web Application

Awesome Lists containing this project

README

          

# 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
```