Look the code
echo get_include_path().'<br/>';
echo set_include_path( '/home/testserver/public_html/development/library' );
i have two test.php files containing above code only. one on main server, and one on subdomain on main server it is running fine but on subdomain it is notrunning and giving error Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 351121536 bytes) in Unknown on line 0
and if i print memory taken using memory_get_usage(), then it is printing between 3-5 MB.
my php.ini setting are. memory_limit = 32M
what may be the reason, any idea ?
Please help !