The Eskimo
New member
I am writing my own web server for my project and i want to add PHP support in it. All i am worried about is that any PHP file will compile with php.exe utility in the command line, only if it contains a very few lines(3 or 4 at max). If the file contains a few characters more than that threshold, then the PHP.exe utility wont exit and my web server hangs up.
This is what i do in my server whenever i get a request for a php file:
php "path/to/file/myfile.php"
And this works so well for very small php files.
Can anyone figure out what/where the problem exactly is??
Thanks for answering!
This is what i do in my server whenever i get a request for a php file:
php "path/to/file/myfile.php"
And this works so well for very small php files.
Can anyone figure out what/where the problem exactly is??
Thanks for answering!