Non-secure Server | Secure Server | Troubleshooting Errors
This service is available to faculty, staff, student and sponsored accounts.
Those of you using Perl for your CGI programs will find Perl at /usr/local/bin/perl on fraser.sfu.ca.
That is, the first line of your program should read
#!/usr/local/bin/perl
You have a limited “quota” of disk space under your SFU Computing account,
some of which you may already be using for other purposes.
To check out how much space you are using and how much you have available, log into fraser.sfu.ca and type this:
quota -v
This will return how much disk space you are using and what your quota is, in kilobytes.
For example, the usage number 12718 would indicate that
you are using over 12 megabytes.
If you are transferring your Perl program from another system
(that is you are not creating the .cgi file directly on fraser using a text editor there),
a common problem is that the file does not have the correct line-ending characters in it.
fraser (cgi.sfu.ca) is a Unix machine and expects line-ending characters to be in Unix format.
If you create your .cgi file on a Microsoft Windows system, for example, and then transfer it to fraser in binary mode,
fraser will not understand where line endings are in your file and you will get a “Server Failed” message.
To prevent or fix this problem try one of the following methods:
|