apc.php 403 B

12345678910111213141516171819
  1. <?php
  2. {% if ansible_prolog -%}
  3. {% from 'templates/ansible/prolog.j2' import prolog with context %}
  4. {{ prolog() }}
  5. {% endif -%}
  6. define('USE_AUTHENTICATION', 0);
  7. $files = array('/usr/share/doc/php5-apcu/apc.php', '/usr/share/doc/php-apc/apc.php');
  8. foreach($files as $file) {
  9. if (file_exists($file)) {
  10. require_once $file;
  11. exit(0);
  12. }
  13. }
  14. die("Unable to find APC control file");
  15. ?>