install.forced.sample.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?php
  2. /* Copyright (C) 2016 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  16. */
  17. /** @var bool Hide PHP informations */
  18. $force_install_nophpinfo = true;
  19. /** @var int 1 = Lock and hide environment variables, 2 = Lock all set variables */
  20. $force_install_noedit = 2;
  21. /** @var string Information message */
  22. $force_install_message = 'Welcome to your Dolibarr install';
  23. /** @var string Data root absolute path (documents folder) */
  24. $force_install_main_data_root = null;
  25. /** @var bool Force HTTPS */
  26. $force_install_mainforcehttps = true;
  27. /** @var string Database name */
  28. $force_install_database = 'dolibarr';
  29. /** @var string Database driver (mysql|mysqli|pgsql|mssql|sqlite|sqlite3) */
  30. $force_install_type = 'mysqli';
  31. /** @var string Database server host */
  32. $force_install_dbserver = 'localhost';
  33. /** @var int Database server port */
  34. $force_install_port = 3306;
  35. /** @var string Database tables prefix */
  36. $force_install_prefix = 'llx_';
  37. /** @var bool Force database creation */
  38. $force_install_createdatabase = true;
  39. /** @var string Database username */
  40. $force_install_databaselogin = 'root';
  41. /** @var string Database password */
  42. $force_install_databasepass = '';
  43. /** @var bool Force database user creation */
  44. $force_install_createuser = false;
  45. /** @var string Database root username */
  46. $force_install_databaserootlogin = 'root';
  47. /** @var string Database root password */
  48. $force_install_databaserootpass = '';
  49. /** @var string Dolibarr super-administrator username */
  50. $force_install_dolibarrlogin = 'admin';
  51. /** @var bool Force install locking */
  52. $force_install_lockinstall = true;
  53. /** @var string Enable module(s) (Comma separated class names list) */
  54. $force_install_module = 'modSociete,modFournisseur,modFacture';