Source for file mysql.conf.php

Documentation is available at mysql.conf.php

  1. <?php
  2. //              (F)
  3. // CMS3 - A Three Content Management System.
  4. // Copyright (C) 2007  Jop... (Jonas F. Jensen).
  5. // 
  6. // This program is free software; you can redistribute it and/or
  7. // modify it under the terms of the GNU General Public License
  8. // as published by the Free Software Foundation; either version 2
  9. // of the License, or (at your option) any later version.
  10. // 
  11. // This program is distributed in the hope that it will be useful,
  12. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. // GNU General Public License for more details.
  15. //
  16. // You should have received a copy of the GNU General Public License
  17. // along with this program; if not, write to the Free Software
  18. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  19.  
  20. /**
  21. *This file defines simple database connection settings
  22. *
  23. *This file must be manually edited to comply with local server settings
  24. *
  25. @package    System
  26. @author    Jonas F. Jensen <jopsen@gmail.com>
  27. @copyright    2007 Jonas F. Jensen.
  28. @license    http://www.gnu.org/licenses/gpl.txt
  29. */
  30.  
  31. //Defines contants for the MySQL connection
  32.  
  33. /**
  34. *Address of the userspace database host
  35. */
  36. define(CMS3_System_UserSpaceDatabaseServer,     "localhost");
  37.  
  38. /**
  39. *Username for userspace database
  40. */
  41. define(CMS3_System_UserSpaceDatabaseUser,     "root");
  42.  
  43. /**
  44. *Password for the userspace database
  45. */
  46. define(CMS3_System_UserSpaceDatabasePassword,     "");
  47.  
  48. /**
  49. *Userspace database prefix
  50. */
  51. define(CMS3_System_UserSpaceDatabasePrefix,     "");
  52.  
  53. /**
  54. *Address of the system database host
  55. */
  56. define(CMS3_System_SystemDatabaseServer,     "localhost");
  57.  
  58. /**
  59. *Username for system database
  60. */
  61. define(CMS3_System_SystemDatabaseUser,         "root");
  62.  
  63. /**
  64. *Password for the system database
  65. */
  66. define(CMS3_System_SystemDatabasePassword,     "");
  67.  
  68. /**
  69. *Userspace system prefix
  70. */
  71. define(CMS3_System_SystemDatabasePrefix,     "");
  72. ?>

Documentation generated on Mon, 30 Apr 2007 01:59:14 +0200 by phpDocumentor 1.3.1