No.
Warning: main(cgi-bin/confirmation.php): failed to open stream: No such file or directory in /files/home2/allcockgrieves/cgi-bin/processform.php on line 76
processform.php is in cgi-bin. Inside processform.php, you have done something like
Code:
include("cgi-bin/confirmation.php");
. This means that, when translated to an absolute path, you are attempting to include /files/home2/allcockgrieves/cgi-bin/cgi-bin/confirmation.php, rather than /files/home2/allcockgrieves/cgi-bin/confirmation.php as you probably should be. Moving the file so that it is /confirmation.php isn't going to help matters.
Bookmarks