I just installed phpdocumentor but got weird errors. I finally discovered the problem.
Phpdocumentor creates various files, such as someFile.php.txt, which contains PHP code but is not intended for analysis. It turns out my server parses them. I also checked a file name called someFile.txt and it is not parsed.
How to prevent my PHP server from parsing files like someFile.php.txt?
My server is the PHP version 5.4.20, Apache 2.2.15 and CentOS 6.4. My file is /etc/httpd/conf.d/php.confas follows:
<IfModule prefork.c>
LoadModule php5_module modules/libphp5.so
</IfModule>
<IfModule worker.c>
LoadModule php5_module modules/libphp5-zts.so
</IfModule>
AddHandler php5-script .php
AddType text/html .php
DirectoryIndex index.php
source
share