Hey,
I moved a php app from linux over to windows. The problem that I am facing is with the cgi files. The cgi file comes up as not found while they are there.
One of the files content is
#!/usr/local/bin/perl
# ==================================================================
# ==================================================================
use strict;
use lib '/var/home/jamaya/mydir.com/cgi-bin/profiles/admin';
use Links qw/$PLG/;
use Links::User::Page;
local $SIG{__DIE__} = \&Links::fatal;
Links::init('/var/home/jamaya/mydir.com/cgi-bin/profiles/admin');
Links::init_user();
if ($PLG->dispatch('check_request', \&Links::check_request)) {
$PLG->dispatch('handle_page', \&Links::User::Page::handle);
}
Can anyone show me a way, I have Fast CGI installed and php installed no pearl.
Thanks