Advertisement
Guest User

Untitled

a guest
Jan 6th, 2017
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. <?php
  2. // If FreePBX is installed, use its database auth system by default
  3. // To set up usernames and passwords
  4. define('USE_FREEPBX_AUTH',false);
  5.  
  6. // User/Pass to Log into FOP2Manager. If we detect a FreePBX session
  7. // or a fop2 sessions with the "manager" permission, the authentication
  8. // will be asumed as ok.
  9.  
  10. $ADMINUSER = "admin";
  11. $ADMINPWD = "adminpass";
  12.  
  13. // This database parameters are only needed if you are not using FreePBX,
  14. // PBX in a Flash, Elastix or Thirdlane 7
  15. // If any of the above systems config files is found, connections details
  16. // on those config files will be used instead of what you set manually here
  17.  
  18. $DBHOST="localhost";
  19. $DBUSER="fop2";
  20. $DBPASS="";
  21. $DBNAME="fop2";
  22.  
  23. // This is the preference sqlite database for FOP2 User and Context Preferences
  24. $SQLITEDB="/usr/local/fop2/fop2settings.db";
  25.  
  26. // If you use non ASCII chars for labels and you do not see them properly, try
  27. // forcing UTF8 on the MySQL connecton
  28. $FORCE_UTF8=false;
  29.  
  30. // Plugin Directory. By default the subdirectory plugins of the working FOP2
  31. // Manager path will be used. If you want to place them in some other location
  32. // uncomment the entry and point to the right path. Be sure that the directory
  33. // owner/permissions allows the web server/php user to write into that directory
  34. //
  35. // $PLUGIN_DIR="/var/www/html/fop2/admin/plugins";
  36.  
  37. // If you have a PBX that cannot be auto detected, like MiRTA, specify the engine
  38. // here. Otherwise leave this line commented. Available options: mirtapbx, custom
  39. //
  40. // $ENGINE="mirtapbx";
  41.  
  42. // Branding Settings
  43. $APPNAME = "FOP2 Manager";
  44. $LOGONAME = "<span style='font-weight:bold; color:#000;'>FOP2</span> <span style='color:#4EB855'>Manager</span>";
  45. $LOGO = "images/fop2managerlogo.png";
  46.  
  47. // General Application Settings
  48. $DEBUG = 3;
  49. $BUTTONS_PER_PAGE = 150;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement