Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

config.php.sample 875B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /*
  3. The MYSQL host (usally localhost).
  4. */
  5. $database_host = "localhost";
  6. /*
  7. The MYSQL host port (usally 3306).
  8. */
  9. $database_port = 3306;
  10. /*
  11. The database name to use (eg: vdm_storage).
  12. */
  13. $database_name = "";
  14. /*
  15. The database user to connect as.
  16. Only needs SELECT and INSERT privilege on database.
  17. No global privilege are required.
  18. */
  19. $database_user = "";
  20. /*
  21. The above user password.
  22. */
  23. $database_pass = "";
  24. /*
  25. The folder to store uploaded images (eg: ./medias/).
  26. The variable MUST ends with a trailling slash (/).
  27. The web server only need write permission.
  28. */
  29. $media_path = "";
  30. /*
  31. The public URL to access uploaded images (eg: /medias/).
  32. The variable MUST ends with a trailling slash (/).
  33. Note that it can also be on a different host:
  34. media_path = /var/images.api.vdm/ (can be a local folder or a mounted one)
  35. media_url = http://images.api.vdm.tld/
  36. */
  37. $media_url = "";
  38. ?>