config.php 500 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Indicates whether the framework is in debug mode, which right
  4. * now only means that occuring errors will be displayed or not.
  5. *
  6. * @var bool
  7. */
  8. define('PQUERY_DEBUG', true);
  9. /**
  10. * The root location of the pQuery framework folder, used for file
  11. * inclusions. The path is absolute and should end with a slash ('/').
  12. *
  13. * @var string
  14. */
  15. define('PQUERY_ROOT', 'D:/xampp/htdocs/pquery/');
  16. define('SITE_ROOT', 'D:/xampp/htdocs/pquery/');
  17. include_once PQUERY_ROOT.'pquery.php';
  18. ?>