<?php

// Example error: Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 167507840 bytes) in Unknown on line 0

// show errors
error_reporting(E_ALL | E_STRICT);  // display all errors
ini_set('display_errors', '1');

// print instructions
print "This script demostrates a problem on this server.<br/>\n";
print "You should see a memory error after set_include_path is used.<br/>\n";
print "If you don't see it try reloading a few times.<br/><br/>\n";
print "Please let us know when this issue is resolved.<br/><br/>\n";

// set include path
set_include_path('.'); // any path will cause memory issue
exit;


?>
