Advertisement
Guest User

Untitled

a guest
May 21st, 2012
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.64 KB | None | 0 0
  1. <?php
  2.  
  3. //content of config.php
  4. define('FRONTROOT', dirname(__FILE__).'/');
  5. define('BACKROOT', dirname(__FILE__).'/admin/');
  6.  
  7. ?>
  8.  
  9. <?php
  10.  
  11. //content of /home/username/public_html/index.php aka frontend
  12. require(dirname(__FILE__).'/config.php');
  13.  
  14. print_r(FRONTROOT); # should print /home/username/public_html/
  15. print_r(BACKROOT); # should print /home/username/public_html/admin/
  16.  
  17. ?>
  18.  
  19. <?php
  20.  
  21. //content of /home/username/public_html/admin/index.php aka backend
  22. require(dirname(__FILE__).'/../config.php');
  23.  
  24. print_r(FRONTROOT); # should print /home/username/public_html/
  25. print_r(BACKROOT); # should print /home/username/public_html/admin/
  26.  
  27. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement