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
- Host: GitHub
- URL: https://github.com/bboymega/file2png-web
- Owner: bboymega
- License: gpl-3.0
- Created: 2022-11-21T21:53:11.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-08-17T19:46:03.000Z (10 months ago)
- Last Synced: 2025-08-17T21:24:07.628Z (10 months ago)
- Topics: cryptography, encoding, encryption-decryption, file, fileprocessing, front-end, php, png-decoder, png-encoder, webapplication, website
- Language: Shell
- Homepage:
- Size: 12.8 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# File2PNG Web Application
This project is a front-end web application based on rekcuFniarB/File2PNG.

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