<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.web.fastcgi.devel">
    <title>gmane.comp.web.fastcgi.devel</title>
    <link>http://blog.gmane.org/gmane.comp.web.fastcgi.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3233"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3230"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3226"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3224"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3222"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3220"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3219"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3218"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3208"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3207"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3206"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3205"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3204"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3203"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3202"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3201"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3200"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3197"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3189"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3187"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3233">
    <title>Manually spawned process and unix domain sockets</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3233</link>
    <description>&lt;pre&gt;I have the following requirements which I am struggling to meet:

1)       Use UNIX domain sockets (named pipes) to communicate (they are on the same box)
2)       Have a single instance of both lighttpd and myApp running
3)       Have multiple simultaneous requests forwarded from Lighttpd at a time

I have a robust setup which uses TCP connections and works very well. This uses the FCGX API to allow myApp to receive multiple requests simultaneously. All I am trying to do is port this from using tcp connections to using named pipes. But I have as yet failed to make this work.

I have now reverted to a simple test app which I have included below along with my Lighttpd config snipet.
I have set the ownership of everything in a ten mile radius to 'lighttpd'

I would be very grateful for any help or suggestions as to what might be going wrong.

Best Regards

Howard May

P.S. Konstantin, I have BCCed you explicitly as you had previously offered assistance in this area (back in 2009!)


fastcgi.server    = ( "/namedpipetest/" =&amp;gt;
                      (
                        (
                          "socket" =&amp;gt; "/var/tmp/lighttpd/wsi-fastcgi.socket",
                          "check-local" =&amp;gt; "disable"
                        )
                      )
                    )



#include &amp;lt;stdio.h&amp;gt;
#include "fcgiapp.h"

void main(int argc, char ** argv)
{
  int fd;
  int result;
  FCGX_Request req;
  printf("Fastcgi FIFO test app\n");
  result = FCGX_Init();
  if(result != 0)
  {
    printf("FCGX_Init returned %d\n", result);
    return;
   }
  fd = FCGX_OpenSocket("/var/tmp/lighttpd/wsi-fastcgi.socket", 16);
  if(fd == 0)
  {
    printf("FCGX_OpenSocket returned 0\n");
    return;
  }
  FCGX_InitRequest(&amp;amp;req, fd, 0);

  while((result = FCGX_Accept_r(&amp;amp;req))==0);
  {
    FCGX_FPrintF(req.out, "Content-type: text/html\r\n\r\n&amp;lt;TITLE&amp;gt;Whoop&amp;lt;/TITLE&amp;gt;\n");
  }
  printf("FCGX_Accept_r returned %d\n", result);
  return;
}


_______________________________________________
FastCGI-developers mailing list
FastCGI-developers-xGejAJT2w6xVgU18Zptdi0EOCMrvLtNR&amp;lt; at &amp;gt;public.gmane.org
http://mailman.fastcgi.com/mailman/listinfo/fastcgi-developers
&lt;/pre&gt;</description>
    <dc:creator>Howard May</dc:creator>
    <dc:date>2011-08-17T14:10:05</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3230">
    <title>Dev Mailing List</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3230</link>
    <description>&lt;pre&gt;Folks,

I think the mailing lists and archives are all fixed up now.  I also 
opened the archives up so they can be Google-searched (thanks to the 
person who pointed that out).  The wiki and web site will be migrating 
shortly as well as soon as I get a chance to finish setting up and 
securing httpd and the Drupal stuff.

   http://mailman.fastcgi.com

Should be the right URL (and properly propagate now as well).

Cheers,

David.
&lt;/pre&gt;</description>
    <dc:creator>David Birnbaum</dc:creator>
    <dc:date>2011-05-18T14:40:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3226">
    <title>Trying to use FastCGI to run PHP as UID of file owner</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3226</link>
    <description>&lt;pre&gt;Hi there,

PHP:  5.3.3
Apache: 2.2.17
mod_fastcgi: 2.4.6

I'm trying out FastCGI for the first time, so please forgive my ignorance.

Basically, I'm trying to use FastCGI to run PHP scripts as the UID/owner of
the script itself, not the default apache 'nobody'/etc.

I must be missing a few things because I'm running into a few problems and
would appreciate *any* pointers.

Here's my apache config for a virtual host:

&amp;lt;VirtualHost ...&amp;gt;
 &amp;lt;IfModule mod_fastcgi.c&amp;gt;
  FastCgiServer /www/virtual/abc.com/cgi-bin/php
  AddHandler php-fastcgi .php
  SetHandler fastcgi-script
  Action php-fastcgi /cgi-bin/php
  AddType application/x-httpd-php .php
  &amp;lt;Directory /www/virtual/abc.com/htdocs&amp;gt;
      Options +ExecCGI
  &amp;lt;/Directory&amp;gt;
 &amp;lt;/IfModule&amp;gt;
 php_flag engine off
 Options +IncludesNOEXEC -Indexes +FollowSymLinks
 ServerAdmin webmaster-GXcTff7tL0M&amp;lt; at &amp;gt;public.gmane.org
 DocumentRoot /www/virtual/abc.com/htdocs/index.html  # or without index.html
 php_admin_value open_basedir /www/virtual/abc.com/htdocs:/tmp
 php_admin_value display_errors on
 ServerName www.abc.com
 ServerAlias abc.com
 ErrorLog /www/virtual/abc.com/logs/error_log
 TransferLog /www/virtual/abc.com/logs/access_log
 ScriptAlias /cgi-bin/ /www/virtual/abc.com/cgi-bin/
&amp;lt;/VirtualHost&amp;gt;

/cgi-bin/php file:
------------------
#!/bin/sh

PHPRC="/usr/local/php5/lib"
export PHPRC
PHP_FCGI_CHILDREN=4
export PHP_FCGI_CHILDREN
exec /usr/local/php5/bin/php

/cgi-bin/php is +x (executable) owned by root.

Test PHP script: /htdocs/1.php is owned by UID/GID 20964:2374 (ie, not the
apache user).  Perms are 775 (-rwxrwxr-x).

If I browse to abc.com/1.php it hangs for 30s, producing this error in the logs:

FastCGI: comm with (dynamic) server "/www/virtual/abc.com/htdocs/1.php"
aborted: (first read) idle timeout (30 sec)
FastCGI: incomplete headers (0 bytes) received from server
"/www/virtual/abc.com/htdocs/1.php"

It's almost as if /cgi-bin/php is not being fed the 1.php file and it's
waiting for input from stdin (which is what the php CLI binary does if you run
it without args).  It then times out waiting for input, producing the error
above.

I've configured/compiled PHP 5.3.3 with/without '--with-fastcgi' (even though
./configure --help does not show --with-fastcgi as being available).

I used 'top_dir = /.../apache/httpd-2.2.17' in the Makefile for
mod_fastcgi-2.4.6.  Your site talks about a php binary version which talks the
FastCGI protocol, so I'm not sure whether my PHP binary is compiled correctly
to work with FastCGI (the binary produced appears to be the same with/without
'--with-fastcgi, so this might be a factor).

Also, since this setup is intended for a customer, and they only have FTP
access to update their site, with CHMOD disabled, is there any way to do this
without having to make the PHP script executable?  If I turn off the
executable bit, then I get the "execute not allowed" (for uid 99, gid 99, ie,
the apache user) error which I suppose is expected.

A side-effect of all this is that I cannot even browse to an HTML file
(index.html) - it produces the error:

FastCGI: invalid (dynamic) server "/www/virtual/abc.com/htdocs/index.html":
access for server (uid 99, gid 99) not allowed: execute not allowed

Or it tries to execute the htdocs/ directory if I leave out the index.html for
DocumentRoot:

FastCGI: invalid (dynamic) server "/www/virtual/abc.com/htdocs/": script is a
directory!

I hope I've made sense in the above.  Any assistance/pointers would be
appreciated.  btw, it's a pity this mailing list is not open to google, else
I'd be able to search it for suggestions...

regards
Henry
&lt;/pre&gt;</description>
    <dc:creator>Henry C.</dc:creator>
    <dc:date>2011-05-05T11:36:40</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3224">
    <title>multiple connections to a fastcgi server</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3224</link>
    <description>&lt;pre&gt;Hello,

I want to build a fast cgi server application which can handles long
polling calls. There should be only one process of this fast cgi app
which handles all incoming requests.
I wrote an app which is similar to the threaded.c example in the fast
cgi sdk. (http://www.fastcgi.com/devkit/examples/threaded.c)
Before responding, my app will wait a certain time after an incoming
request. (For testing I only put a sleep() call above
FCGX_FPrintF(...) in threaded.c).
I tested with Lighttpd und nginx and got the same result: The second
call is blocked until the first one is finished. I think the method
FCGX_Accept_r(&amp;amp;request); blocks until FCGX_Finish_r(&amp;amp;request); is
called.
Does anyone has a running multithread fastcgi app?

Thanks
Marc
&lt;/pre&gt;</description>
    <dc:creator>mscherer82-Re5JQEeQqe8AvxtiuMwx3w&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2011-05-03T13:58:54</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3222">
    <title>Cannot allocate memory</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3222</link>
    <description>&lt;pre&gt;Hi


Please help me to fix this issue.


[Wed Apr 20 14:28:39 2011] [notice] mod_fcgid: call /var/www/vhosts/
domain.com/httpdocs/index.php&amp;lt;http://webdevassistant.co.uk/httpdocs/index.php&amp;gt;with
wrapper /usr/bin/php-cgi

[Wed Apr 20 14:28:39 2011] [error] (12)Cannot allocate memory: mod_fcgid:
can't create wrapper process for
/var/www/vhosts/domain/httpdocs/index.php&amp;lt;http://webdevassistant.co.uk/httpdocs/index.php&amp;gt;

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


Site hosted with plesk control.


Below is the server settings.


vi /etc/httpd/conf.d/fcgid.conf


 added by psa-mod-fcgid-configurator
LoadModule fcgid_module /usr/lib64/httpd/modules/mod_fcgid.so

&amp;lt;IfModule mod_fcgid.c&amp;gt;
  SocketPath /var/lib/httpd/fcgid/sock
&amp;lt;/IfModule&amp;gt;

# added by psa-mod-fcgid-configurator
&amp;lt;IfModule mod_fcgid.c&amp;gt;
  IdleTimeout 36000
  ProcessLifeTime 7200
  MaxProcessCount 64
  DefaultMaxClassProcessCount 8
  IPCConnectTimeout 300
  IPCCommTimeout 450
  DefaultInitEnv RAILS_ENV production
&amp;lt;/IfModule&amp;gt;


For solving some other issue with fcgid, created a new vhost.conf and
vhost_ssl.conf then added below entries to files.


&amp;lt;IfModule mod_fcgid.c&amp;gt;
SocketPath /var/lib/httpd/fcgid/sock
IdleTimeout 3600
ProcessLifeTime 7200
MaxProcessCount 1000
DefaultMinClassProcessCount 3
DefaultMaxClassProcessCount 100
IPCConnectTimeout 8
IPCCommTimeout 600
BusyTimeout 300
&amp;lt;/IfModule&amp;gt;


All these settings done before 2- 3 months. Drupal is used for building the
sites. But now i'm getting errors i posted above.

Total memory - Mem:   1984536k total

Please help.


Regards

Nidhin M D
_______________________________________________
FastCGI-developers mailing list
FastCGI-developers-xGejAJT2w6xVgU18Zptdi0EOCMrvLtNR&amp;lt; at &amp;gt;public.gmane.org
http://mailman.pins.net/mailman/listinfo.cgi/fastcgi-developers
&lt;/pre&gt;</description>
    <dc:creator>Nidhin M D</dc:creator>
    <dc:date>2011-04-25T06:47:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3220">
    <title>Looking for help configuring an application server</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3220</link>
    <description>&lt;pre&gt;I have a dedicated application server. Whenever I push out an update to my
product, there's a massive spike demand of PHP calls and it starts getting
the dreaded 502 errors.  I'm trying to figure out the best way to configure
this box to avoid these at all costs.  It's fine if the box gets bogged down
and it just just takes longer to process the requests, speed isn't a big
deal for this application, but getting back 502's causes me great pain on
the front end.

RAM: *4 GB*, Disk: *500 GB*
 CPUs: *1 (2 cores/CPU) &amp;lt; at &amp;gt;2.2GHz

*I cranked up PHP_FCGI_CHILDREN = 128 for my last test.  I don't care how
much RAM this takes up (~3.5G), this box is solely dedicated to this
service, there's nothing else running on it.   It still returned ~5500 502
errors during my load test.
*
*

Running nginx 0.8.53

PHP 5.2.15 (cli) (built: Dec 15 2010 14:09:31)
Copyright (c) 1997-2010 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2010 Zend Technologies
    with Zend Extension Manager v1.2.2, Copyright (c) 2003-2007, by Zend
Technologies
    with XCache v1.2.2, Copyright (c) 2005-2007, by mOo
    with Zend Optimizer v3.3.9, Copyright (c) 1998-2009, by Zend
Technologies
_______________________________________________
FastCGI-developers mailing list
FastCGI-developers-xGejAJT2w6xVgU18Zptdi0EOCMrvLtNR&amp;lt; at &amp;gt;public.gmane.org
http://mailman.pins.net/mailman/listinfo.cgi/fastcgi-developers
&lt;/pre&gt;</description>
    <dc:creator>furroy</dc:creator>
    <dc:date>2011-04-22T00:32:57</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3219">
    <title>libfcgi with fd &gt; 1024</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3219</link>
    <description>&lt;pre&gt;I am using Lighttpd with a fastCGI client using libfcgi on Linux. If Lighttpd opens more than 1024 tcp connections it seems that libfcgi fails and I believe this is on account of using 'select' with the default FD_SETSIZE value of 1024.

My question is whether this is a known issue with a tried and tested work around.
Note: my application is required to support more than 1024 simultaneous HTTP requests.

Best regards

Howard May
_______________________________________________
FastCGI-developers mailing list
FastCGI-developers-xGejAJT2w6xVgU18Zptdi0EOCMrvLtNR&amp;lt; at &amp;gt;public.gmane.org
http://mailman.pins.net/mailman/listinfo.cgi/fastcgi-developers
&lt;/pre&gt;</description>
    <dc:creator>Howard May</dc:creator>
    <dc:date>2011-04-21T08:48:06</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3218">
    <title>PHP5-CGI load balancing</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3218</link>
    <description>&lt;pre&gt;Hello,

Howto install php5-cgi with load balancing ??

The first server is installed like this tutorial
http://www.howtoforge.com/installing-ch
... untu-10.10&amp;lt;http://www.howtoforge.com/installing-cherokee-with-php5-and-mysql-support-on-ubuntu-10.10&amp;gt;

The second server that is necessary you install?

Tanks.
_______________________________________________
FastCGI-developers mailing list
FastCGI-developers-xGejAJT2w6xVgU18Zptdi0EOCMrvLtNR&amp;lt; at &amp;gt;public.gmane.org
http://mailman.pins.net/mailman/listinfo.cgi/fastcgi-developers
&lt;/pre&gt;</description>
    <dc:creator>Creat Adict</dc:creator>
    <dc:date>2011-04-18T08:28:18</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3208">
    <title>How to build mod_fastcgi.so on RHEL Server 5.6</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3208</link>
    <description>&lt;pre&gt;/usr/sbin/apxs -o mod_fastcgi.so -c *.c

Doesn't generate a mod_fastcgi.so file

_It generates these files:_
mod_fastcgi.la
mod_fastcgi.lo
mod_fastcgi.o
mod_fastcgi.slo

Using instructions for shared object here:  
http://www.fastcgi.com/mod_fastcgi/INSTALL

OS = RHEL 5.6  64-bit
Intel(R) Xeon(R) CPU           E5410  &amp;lt; at &amp;gt; 2.33GHz stepping 06
gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-50)
Server version: Apache/2.2.3
PHP 5.2.17

_______________________________________________
FastCGI-developers mailing list
FastCGI-developers-xGejAJT2w6xVgU18Zptdi0EOCMrvLtNR&amp;lt; at &amp;gt;public.gmane.org
http://mailman.pins.net/mailman/listinfo.cgi/fastcgi-developers
&lt;/pre&gt;</description>
    <dc:creator>steve arroyo</dc:creator>
    <dc:date>2011-04-07T20:22:58</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3207">
    <title>FCGIDotNet: a simple fcgi client in C#</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3207</link>
    <description>&lt;pre&gt;Greetings all,

Recently I was working on a C# project which needed to serve web pages
from the .net application, and I wanted to use fastcgi. Since I
couldn't find a good way to do this, I created a quick implementation
myself. I have made it available here:

https://sourceforge.net/projects/fcgidotnet/

It's not super fancy or anything, and it only supports TCP, but it
works fine for connecting a .net application to Apache.

The project is under the AGPL.
&lt;/pre&gt;</description>
    <dc:creator>Rick Mansfield</dc:creator>
    <dc:date>2011-04-06T13:08:33</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3206">
    <title>Possible serious bug in mod_fastcgi-2.4.6-AP22.dll</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3206</link>
    <description>&lt;pre&gt;Greetings,

I need to report a possible serious bug but can't find any way to do 
this except via this mailing list. Apologies if I am doing this wrong:

I have developed my own Windows FastCGI app that uses its own FastCGI 
protocol implementation, and it depends on 
Apache2+mod_fastcgi-2.4.6-AP22.dll to run it.

I recently noticed that httpd.exe sometimes stops responding and takes 
100% cpu until it is killed.

After MUCH debugging, I found the cause:

Sending an FCGIEndRequest(3) packet header in pieces. Specifically, If I 
send the first two bytes of the packet separately, and then the rest, it 
causes the 100% cpu issue. This happens because I send the complete 
response in batches of 4096 and sometimes the packet headers become split.

Can anyone confirm this or tell me where to report bugs and what to do next?
&lt;/pre&gt;</description>
    <dc:creator>Zev Toledano</dc:creator>
    <dc:date>2011-04-05T15:54:17</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3205">
    <title>[PATCH] Fix compile issue (missing include)</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3205</link>
    <description>&lt;pre&gt;Hello,

the attached patch fixes a compile issue, where EOF is not defined.
This happens using gcc versions &amp;gt;=4.4.

Best regards,

Markus
_______________________________________________
FastCGI-developers mailing list
FastCGI-developers-xGejAJT2w6xVgU18Zptdi0EOCMrvLtNR&amp;lt; at &amp;gt;public.gmane.org
http://mailman.pins.net/mailman/listinfo.cgi/fastcgi-developers
&lt;/pre&gt;</description>
    <dc:creator>Markus Rothe</dc:creator>
    <dc:date>2011-03-27T21:02:29</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3204">
    <title>website offline for more than 3 hour</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3204</link>
    <description>&lt;pre&gt;

  Today, my website was offline for more than 3 hour because of this:

Code:[Thu
 Mar 24 13:19:11 2011] [warn] [client 201.58.140.99] mod_fcgid: can't 
apply process slot for /home/bike/public_html/index.php, referer: 
http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou
rce=web&amp;amp;cd=2&amp;amp;ved=0CB0QFjAB&amp;amp;url=http%3A%2F%2Fwww.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br%2Findex.php%3Foption%3Dcom_rsmonials%26Itemid%3D163&amp;amp;rct=j&amp;amp;q=www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br&amp;amp;ei=p26LTe7pFN
KhtweKiv2HDg&amp;amp;usg=AFQjCNH89QutUNj0Ppu3VIwcAgR8X61wbQ
[Thu
 Mar 24 13:19:10 2011] [warn] [client 201.58.140.99] mod_fcgid: can't 
apply process slot for /home/bike/public_html/index.php, referer: 
http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou
rce=web&amp;amp;cd=2&amp;amp;ved=0CB0QFjAB&amp;amp;url=http%3A%2F%2Fwww.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br%2Findex.php%3Foption%3Dcom_rsmonials%26Itemid%3D163&amp;amp;rct=j&amp;amp;q=www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br&amp;amp;ei=p26LTe7pFN
KhtweKiv2HDg&amp;amp;usg=AFQjCNH89QutUNj0Ppu3VIwcAgR8X61wbQ
[Thu
 Mar 24 13:18:51 2011] [warn] [client 201.58.140.99] mod_fcgid: can't 
apply process slot for /home/bike/public_html/index.php, referer: 
http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou
rce=web&amp;amp;cd=1&amp;amp;ved=0CBcQFjAA&amp;amp;url=http%3A%2F%2Fwww.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br%2F&amp;amp;rct=j&amp;amp;q=www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br&amp;amp;ei=p26LTe7pFNKhtweKiv2HDg&amp;amp;usg=AFQjCNHT2N_7eJ8txGJScenumGbitK_6
eg
[Thu
 Mar 24 13:18:37 2011] [warn] [client 201.58.140.99] mod_fcgid: can't 
apply process slot for /home/bike/public_html/index.php, referer: 
http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou
rce=web&amp;amp;cd=1&amp;amp;ved=0CBcQFjAA&amp;amp;url=http%3A%2F%2Fwww.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br%2F&amp;amp;rct=j&amp;amp;q=www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br&amp;amp;ei=mm6LTeL9HIyjtgfb3tnoDQ&amp;amp;usg=AFQjCNHT2N_7eJ8txGJScenumGbitK_6
eg
[Thu
 Mar 24 13:18:36 2011] [warn] [client 201.58.140.99] mod_fcgid: can't 
apply process slot for /home/bike/public_html/index.php, referer: 
http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou"&amp;gt;http://www.google.com.br/url?sa=t&amp;amp;sou
rce=web&amp;amp;cd=1&amp;amp;ved=0CBcQFjAA&amp;amp;url=http%3A%2F%2Fwww.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br%2F&amp;amp;rct=j&amp;amp;q=www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br"&amp;gt;www.brigadeirobikepark.com.br&amp;amp;ei=mm6LTeL9HIyjtgfb3tnoDQ&amp;amp;usg=AFQjCNHT2N_7eJ8txGJScenumGbitK_6
eg
[Thu Mar 24 08:28:15 2011] [warn] [client 201.58.11.95] mod_fcgid: can't apply process slot for /home/bike/public_html/index.php


What could cause this?

Any ideas how to fix it?

Thanks




       _______________________________________________
FastCGI-developers mailing list
FastCGI-developers-xGejAJT2w6xVgU18Zptdi0EOCMrvLtNR&amp;lt; at &amp;gt;public.gmane.org
http://mailman.pins.net/mailman/listinfo.cgi/fastcgi-developers
&lt;/pre&gt;</description>
    <dc:creator>Joao Ferraz</dc:creator>
    <dc:date>2011-03-24T19:22:36</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3203">
    <title>fast cgi with custom written CGI library in C</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3203</link>
    <description>&lt;pre&gt;Sorry wrote too fast, meant to say do I need any changes/updates to work
with the Fast CGI library and its model of handing request? I think its
socked based right?

 I am a C programmer who has written my own CGI library in C. I read the CGI
spec. and implemented it accordingly. i.e. it reads the environment
variables and parses the information. I want to try FastCGI with some web
apps that use my C library.

 So the question is… do I need to change/update my library to work with Fast
CGI? Or will it just work the same? In more technical terms, will the
required environment variables be reset to the proper values of each
request?

- Doug
_______________________________________________
FastCGI-developers mailing list
FastCGI-developers-xGejAJT2w6xVgU18Zptdi0EOCMrvLtNR&amp;lt; at &amp;gt;public.gmane.org
http://mailman.pins.net/mailman/listinfo.cgi/fastcgi-developers
&lt;/pre&gt;</description>
    <dc:creator>Administrator YouLooker</dc:creator>
    <dc:date>2011-03-18T18:26:16</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3202">
    <title>fast cgi with custom written CGI library in C</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3202</link>
    <description>&lt;pre&gt;Hi all,



I am a C programmer who has written my own CGI library in C. I read the CGI
spec. and implemented it accordingly. i.e. it reads the environment
variables and parses the information. I want to try FastCGI with some web
apps that use my C library.



So the question is… do I need to change/update my library to work with CGI?
Or will it just work the same? In more technical terms, will the required
environment variables be reset to the proper values of each request?



-Doug
_______________________________________________
FastCGI-developers mailing list
FastCGI-developers-xGejAJT2w6xVgU18Zptdi0EOCMrvLtNR&amp;lt; at &amp;gt;public.gmane.org
http://mailman.pins.net/mailman/listinfo.cgi/fastcgi-developers
&lt;/pre&gt;</description>
    <dc:creator>Administrator YouLooker</dc:creator>
    <dc:date>2011-03-18T18:23:33</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3201">
    <title>Ajai Kolarikal wants to stay in touch on LinkedIn</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3201</link>
    <description>&lt;pre&gt;LinkedIn
------------

   
I'd like to add you to my professional network on LinkedIn.

- Ajai Kolarikal

Ajai Kolarikal
Sr Software engineer at PCS 
United Arab Emirates

Confirm that you know Ajai Kolarikal
https://www.linkedin.com/e/-aag7tu-glf1nv0z-x/isd/2529154171/igGloDAa/


 
&lt;/pre&gt;</description>
    <dc:creator>Ajai Kolarikal</dc:creator>
    <dc:date>2011-03-18T11:47:20</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3200">
    <title>Ajai Kolarikal wants to stay in touch on LinkedIn</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3200</link>
    <description>&lt;pre&gt;LinkedIn
------------

   
I'd like to add you to my professional network on LinkedIn.

- Ajai Kolarikal

Ajai Kolarikal
Sr Software engineer at PCS 
United Arab Emirates

Confirm that you know Ajai Kolarikal
https://www.linkedin.com/e/-aag7tu-glf1njf7-1c/isd/2529154171/igGloDAa/


 
&lt;/pre&gt;</description>
    <dc:creator>Ajai Kolarikal</dc:creator>
    <dc:date>2011-03-18T11:47:05</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3197">
    <title>FastCGI not working on Linux (Red Hat)</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3197</link>
    <description>&lt;pre&gt;Hi all!
My product is cross platform (Win/Linux/AIX/Solaris/HP-UX) (using C/C++). I
have recently switched to FastCGI from trivial CGI. I have developed the
FastCGI app for windows successfully. Now when going to port the code to
Linux, I successfully gone passed the compilation phase (both my code and
the libfcgi.so). Then I configured and built apache with FastCgi module
(mod_fcgid) and added int the http.conf file as,

&amp;lt;IfModule fcgid_module&amp;gt;
    FcgidMaxRequestsPerProcess 10
    FcgidMaxRequestLen 1073741824

    &amp;lt;Location "/cgi-bin/mainapp.exe"&amp;gt;
        SetHandler fcgid-script
    &amp;lt;/Location&amp;gt;
&amp;lt;/IfModule&amp;gt;


Before that I also built mod_fcgid as separate Load Module and added
LoadModule mod_fcgid in conf file.

In both cases apache starts fine but the browser throw 503 error.

Any help is welcomed.

&lt;/pre&gt;</description>
    <dc:creator>Muneeb A. Shakoor</dc:creator>
    <dc:date>2011-03-15T06:54:01</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3189">
    <title>help needed...</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3189</link>
    <description>&lt;pre&gt;Hi guys,
I am a bit disappointed in the FastCGI documentation, as many other people
are. However I am not losing hope with it.

1 - I installed the apache mod_fcgid  from SUSE website and it seems to be
working..
2 - I configured, compiled the fcgi-(*-*).tar.gz and added the libs to the
/usr/lib.
3 - Added the -Ifcgi++ (or -Ifcgi ) library to my Makefile... my compiler is
not complaining
4 - Added the FCGI_Accept() loop to my main routing in my c++ app...

RESULTS: When I run the whole thing ...
5 - my app runs (it shows on the process monitor as a sleeping process) and
does not stop immediately which fine and dandy
6 - I only get a blank page in the browser. Even an error message from my
WWW server does not show up.
I tried flushing the std::cout as well as writing to stdout file descrptier
then flush it... nothing shows up on the browser screen..

 What I could not understand is making sure the linker searches for the BSD
socket library. Since the ldconfig did not complain, I assumed it found it,
right?

Your help will pay back to fastcgi... so please help me out..

Majed Dolaimi
C++/ web developer
_______________________________________________
FastCGI-developers mailing list
FastCGI-developers-xGejAJT2w6xVgU18Zptdi0EOCMrvLtNR&amp;lt; at &amp;gt;public.gmane.org
http://mailman.pins.net/mailman/listinfo.cgi/fastcgi-developers
&lt;/pre&gt;</description>
    <dc:creator>Majed Al-Dolaimi</dc:creator>
    <dc:date>2011-03-11T13:35:54</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3187">
    <title>Website load not complete</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3187</link>
    <description>&lt;pre&gt;Hello,


i use fastcgi with PHP-FPM. When i go on Website with FastCGI then the
page load not complete.

http://mail.silviosiefke.de/fastcgi_apache.png

When i run with FCGID then the page load complete.

http://mail.silviosiefke.de/fcgid_apache.png

Has someone a idea what is the problem? Thank you.

Regards
Silvio

Some Config Parameters:
&amp;lt;VirtualHost&amp;gt;
 SuexecUserGroup "siefke" "siefke"
 ServerName silviosiefke.de
 DocumentRoot /usr/local/www/vserver/silviosiefke.de/data
 ScriptAlias /cgi-bin/ "/usr/local/www/vserver/silviosiefke.de/cgi-bin/"
 AddHandler php5-fastcgi .php
 FastCgiExternalServer /usr/local/www/vserver/silviosiefke.de/data
-socket /tmp/siefke.socket

&amp;lt;Directory /usr/local/www/vserver/silviosiefke.de/data&amp;gt;
&amp;lt;IfModule mod_rewrite.c&amp;gt;
RewriteEngine On
RewriteCond %{REQUEST_URI} \/$
RewriteRule ^(.*)$ index.php [L,QSA]
&amp;lt;/IfModule&amp;gt;
Options -All +FollowSymLinks +ExecCGI
AllowOverride Options FileInfo AuthConfig Limit
allow from all
AllowOverride All
&amp;lt;/Directory&amp;gt;

ErrorLog /usr/local/www/vserver/silviosiefke.de/log/error.log
CustomLog /usr/local/www/vserver/silviosiefke.de/log/access.log combined
&amp;lt;/VirtualHost&amp;gt;

# httpd -V
Server version: Apache/2.2.17 (FreeBSD)
Server built:   Feb 26 2011 13:17:20
Server's Module Magic Number: 20051115:25
Server loaded:  APR 1.4.2, APR-Util 1.3.10
Compiled using: APR 1.4.2, APR-Util 1.3.10
Architecture:   32-bit
Server MPM:     Worker
  threaded:     yes (fixed thread count)
    forked:     yes (variable process count)
Server compiled with....
 -D APACHE_MPM_DIR="server/mpm/worker"
 -D APR_HAS_SENDFILE
 -D APR_HAS_MMAP
 -D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
 -D APR_USE_FLOCK_SERIALIZE
 -D APR_USE_PTHREAD_SERIALIZE
 -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
 -D APR_HAS_OTHER_CHILD
 -D AP_HAVE_RELIABLE_PIPED_LOGS
 -D DYNAMIC_MODULE_LIMIT=128
 -D HTTPD_ROOT="/usr/local"
 -D SUEXEC_BIN="/usr/local/sbin/suexec"
 -D DEFAULT_SCOREBOARD="logs/apache_runtime_status"
 -D DEFAULT_ERRORLOG="logs/error_log"
 -D AP_TYPES_CONFIG_FILE="etc/apache22/mime.types"
 -D SERVER_CONFIG_FILE="etc/apache22/httpd.conf"
&lt;/pre&gt;</description>
    <dc:creator>Silvio Siefke</dc:creator>
    <dc:date>2011-03-01T17:23:04</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3186">
    <title>Unicode Support</title>
    <link>http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3186</link>
    <description>&lt;pre&gt;Hi All ,

I wondering if Fastcgi supports unicode functions like wprintf. I receive  a
buffer via fread and get char* that has unicode characters in it. I mean
bytes with value above 128 . How do I process them inside fastcgi main
function. A call to mbstowcs fails.

Please help.

Santosh
_______________________________________________
FastCGI-developers mailing list
FastCGI-developers-xGejAJT2w6xVgU18Zptdi0EOCMrvLtNR&amp;lt; at &amp;gt;public.gmane.org
http://mailman.pins.net/mailman/listinfo.cgi/fastcgi-developers
&lt;/pre&gt;</description>
    <dc:creator>Mr architect</dc:creator>
    <dc:date>2011-03-01T17:12:19</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.web.fastcgi.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.web.fastcgi.devel</link>
  </textinput>
</rdf:RDF>

