473,395 Members | 1,623 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

PHP-FastCGI?

I'm working on a webhost that seems to have an undocumented feature.

I inadvertently coded a link to "mydomain.com//" - with TWO
trailing slashes.

When I clicked the link, Apache returned this error:

-+-+-+-+-+-+
403 Forbidden
You don't have permission to access
/cgi-sys/php-fastcgi//index.php on this server.

You may need to create an index.html page or enable the
directory browsing by creating an .htaccess file containing
"Options +Indexes".
-+-+-+-+-+

I have a cgi-sys, but I have no idea what this "fastcgi" stuff
is about.

Anyone seen this before?
Jan 12 '07 #1
2 2902
NC
Sanders Kaufman wrote:
>
I'm working on a webhost that seems to have an undocumented
feature.
Or something in httpd.conf... What OS are you running?
I inadvertently coded a link to "mydomain.com//" - with TWO
trailing slashes.

When I clicked the link, Apache returned this error:

-+-+-+-+-+-+
403 Forbidden
You don't have permission to access
/cgi-sys/php-fastcgi//index.php on this server.

You may need to create an index.html page or enable the
directory browsing by creating an .htaccess file containing
"Options +Indexes".
-+-+-+-+-+

I have a cgi-sys, but I have no idea what this "fastcgi" stuff
is about.
Basically (and with a lot of oversimplification), it's plain old CGI
executable, but resident in memory, not loaded from disk at
every request and unloaded upon completion. For more
information, click around www.fastcgi.com...
Anyone seen this before?
Nope. One of my sites runs on a FastCGI installation (FreeBSD
+ Apache); accessing http://www.mysite.com// just gives me
/index.php...

Cheers,
NC

Jan 12 '07 #2
NC wrote:
>I have a cgi-sys, but I have no idea what this "fastcgi" stuff
is about.

Basically (and with a lot of oversimplification), it's plain old CGI
executable, but resident in memory, not loaded from disk at
every request and unloaded upon completion. For more
information, click around www.fastcgi.com...
I checked the web site (of course) and now I understand HOW it
works (residing in memory connection pooling) - but I swear,
after 15 minutes there I still can't figure out what features it
exposes.

I'm (mildy) concerned about having a CGI that I don't know what
it does.

What's particularly weird is how it reports that it resides in a
subdirectory of cgi-bin when I don't have any subdirectories in
CGI-bin.

Jan 12 '07 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: lawrence | last post by:
I haven't been able to reach www.php.net for days. Most of the rest of the web is working for me, though I've bad trouble reaching any English sites. Anyone else having trouble?
9
by: Bartosz Wegrzyn | last post by:
I need help with sessions. I createt set of web site for nav with authorization. first I go into main.php which looks like this: <?php //common functions include_once '../login/common.php';...
4
by: Japhy | last post by:
Hello, I'm am pulling data from a mysql db and want to use the data to populate a <ul. Here are relavent parts of my code : $wohdate = mysql_result($wohRS,$wohndx,woh_date); $woh_display...
59
by: Lennart Björk | last post by:
Hi All, I have a tiny program: <!doctype HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>MyTitle</title> <meta...
8
by: Marcel | last post by:
I have a problem with a PHP page that seems to get executed twice. I am running PHP5 ISAPI on 2003 server. The script is a PHP page with a form. When the form is submitted one record have to...
1
by: jdurden | last post by:
am currently woking on building this site: www.maverick-spirit.com. everything seems to be fine except the press releases page. When you click on one of the press releases in the left column under...
1
by: ansc1 | last post by:
Hello, I'm new to using php coding. I need help with the following: 1. There is a submit button on the form and is saves information to my database. After clicking on "Save Measurement" it...
0
by: tsivaraman | last post by:
I am trying to build php-5.2.1 in RedHat Linux 9. I have installed libxml2-2.6.11,mysql-5.0.33,httpd-2.2.4(apache) successfully.When i do 'make' from the php directory,i get the following...
0
by: Benjamin Grieshaber | last post by:
Hi, I´m on SuSE 9.3 with xmlrpc-c and xmlrpc-c-devel installed (ver. 0.9.10) I tried to compile php with xmlrpc support and got the following errors: ...
4
by: mechphisto | last post by:
I'm working on a friend's box, Fedora Core 6. It has PHP 5.1.6. I need to install mcrypt into it, and the only way I can find to do it is from source then recompile PHP. So I did all that, and got...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.