picframe-colepd/www
2023-04-23 14:19:28 +08:00
..
conv Squash all commits in order to remove personal information. Sorry, you don't get to see the history on this project... 2023-04-23 14:19:28 +08:00
cropperjs@133b8b07d0 Squash all commits in order to remove personal information. Sorry, you don't get to see the history on this project... 2023-04-23 14:19:28 +08:00
.gitignore Squash all commits in order to remove personal information. Sorry, you don't get to see the history on this project... 2023-04-23 14:19:28 +08:00
config.php.example Squash all commits in order to remove personal information. Sorry, you don't get to see the history on this project... 2023-04-23 14:19:28 +08:00
create-database.sql Squash all commits in order to remove personal information. Sorry, you don't get to see the history on this project... 2023-04-23 14:19:28 +08:00
epd-img.php Squash all commits in order to remove personal information. Sorry, you don't get to see the history on this project... 2023-04-23 14:19:28 +08:00
epd-info.php Squash all commits in order to remove personal information. Sorry, you don't get to see the history on this project... 2023-04-23 14:19:28 +08:00
index.html Squash all commits in order to remove personal information. Sorry, you don't get to see the history on this project... 2023-04-23 14:19:28 +08:00
README.md Squash all commits in order to remove personal information. Sorry, you don't get to see the history on this project... 2023-04-23 14:19:28 +08:00
upload.php Squash all commits in order to remove personal information. Sorry, you don't get to see the history on this project... 2023-04-23 14:19:28 +08:00

This requires a MySQL or MariaDB database to work.

How to do this:

  • Make sure your server is running a MySQL/Mariadb database you have access to.
  • Create user 'epd' in the database. Assign a password.
  • Copy config.php.example to config.php. Edit the $pass variable to be the actual password.
  • Create database 'epd', grant user 'epd' all permissions
  • Create the structure: mysql -u epd -p epd < create-database.sql

This also needs a image -> EPD binary program that is written in C to work. This needs to be compiled. To do so:

  • Make sure gcc and make are installed on the host
  • Install libgd-dev (the development package for libgd)
  • cd conv; make
  • Make sure php is allowed to run unix executables