Forum Moderators: coopster & phranque
It seems that SSI is not enabled in my server because it does not execute .cgi code in my html pages. I dont have access to my server.
in my .htm file. This .htm file is actually a php file that was "mode re-writed" to .htm file.
<?php virtual ("/cgi-bin/program.cgi");?>
On another server, where the above method doesn't work, I had to do it like this:
<?php putenv ("REQUEST_METHOD=GET"); passthru ("/cgi-bin/program.cgi");?>
I thought that is what you meant by "a php file that was "mode re-writed" to .htm file".