PDA

View Full Version : WTF is...



Mekhu
September 17th, 2001, 01:11
What's an absolute path?????????

This god damn cgi isn't working and I think it's because of that.

When I log in my ftp for this hosting account two folders come up...


cgi-bin/ & www/

so if I have a file in the www/ folder wouldn't the absolute path be:

/www/filename.html?

Thanks,

Mekhu

bigperm
September 17th, 2001, 02:32
Bah... Open notepad... paste this in... upload it to your cgi-bin... chmod it to 755 and you will see your absolute path.

#!/usr/bin/perl

print "Content-type: text/html\n\n";
print "Your Absolute path is: ";
print $ENV{'DOCUMENT_ROOT'};

Mekhu
September 17th, 2001, 12:25
thanks big

Mekhu