簡體   English   中英

mod_fcgid:無法為/ web / cgi-bin / php-fcgi應用進程插槽

[英]mod_fcgid: can't apply process slot for /web/cgi-bin/php-fcgi

我在基於godaddy wordpress主題的php linux服務器中遇到以下錯誤

錯誤消息 “服務不可用由於維護停機或容量問題,服務器暫時無法滿足您的請求。請稍后重試

位於wwww.checkmoviereview.com端口80的Apache服務器”

該問題僅在某些系統中發生,對我來說它不起作用,對我的朋友和哥迪支持人們來說,它也不能起作用。 我的網站也沒有太多流量。

我最近為一個Android應用程序創建了一個php頁面,我認為這是未關閉連接的罪魁禍首。 有人可以幫助我我在代碼中做錯了什么。 一旦我開始使用新創建的代碼,它將顯示503錯誤,並且幾個小時后它將再次開始工作。”

<?php
mysql_connect(<username & password I am giving here>);
mysql_select_db(<db name i am giving here>);
define('WP_USE_THEMES', false);
require_once('wp-blog-header.php'); 

$i =0;
$rate_query = null;

$rate_query =  new WP_Query( array ( 'post_type' => 'movies', 'orderby' => 'meta_value', 'meta_key' => 'wtf_rscore','posts_per_page'=>'20' ) );

while ($rate_query->have_posts() ) : $rate_query->the_post();
$rcat=get_post_meta($post->ID, 'wtf_category', true);
$rscore=get_post_meta($post->ID, 'wtf_rscore', true);
$rdirec=get_post_meta($post->ID, 'wtf_dirctr', true);
$rgenre=get_the_term_list( $post->get_the_ID, 'movie-genre', '', ', ', '' );    

if ($rcat == 'Bollywood') 
echo  get_image_url() . ",,," . get_the_title() . ",,," . $rscore . ",,," . get_the_content('Read the rest of this entry &raquo;') . ",,," . $rdirec . ",,,". $rgenre . ",,,"; //I am using this echo result in java program

$i = $i + 1;
endwhile; 

mysql_close();
$rate_query = null;
?>

來自服務器的錯誤日志信息

[Thu Oct 10 03:58:38 2013] [11814296] [fcgid:warn] [client 106.76.211.138:44799] mod_fcgid: can't apply process slot for /web/cgi-bin/php-fcgi
[Thu Oct 10 03:58:42 2013] [11814296] [fcgid:warn] [client 106.76.211.138:44567] mod_fcgid: can't apply process slot for /web/cgi-bin/php-fcgi
[Thu Oct 10 03:58:46 2013] [11814296] [fcgid:warn] [client 106.76.211.138:2152] mod_fcgid: can't apply process slot for /web/cgi-bin/php-fcgi
[Thu Oct 10 03:58:50 2013] [11814296] [fcgid:warn] [client 106.76.211.138:37856] mod_fcgid: can't apply process slot for /web/cgi-bin/php-fcgi
[Thu Oct 10 03:58:54 2013] [11814296] [fcgid:warn] [client 106.76.211.138:24984] mod_fcgid: can't apply process slot for /web/cgi-bin/php-fcgi
[Thu Oct 10 03:58:58 2013] [11814296] [fcgid:warn] [client 106.76.211.138:54537] mod_fcgid: can't apply process slot for /web/cgi-bin/php-fcgi
[Thu Oct 10 03:59:03 2013] [11814296] [fcgid:warn] [client 106.76.211.138:32542] mod_fcgid: can't apply process slot for /web/cgi-bin/php-fcgi
[Thu Oct 10 03:59:09 2013] [11814296] [fcgid:warn] [client 106.76.211.138:26424] mod_fcgid: can't apply process slot for /web/cgi-bin/php-fcgi
[Thu Oct 10 03:59:21 2013] [11814296] [fcgid:warn] [client 106.76.211.138:37370] mod_fcgid: can't apply process slot for /web/cgi-bin/php-fcgi
[Thu Oct 10 03:59:57 2013] [11814296] [fcgid:warn] [client 106.76.211.138:21834] mod_fcgid: can't apply process slot for /web/cgi-bin/php-fcgi
[Thu Oct 10 04:02:57 2013] [11814296] [fcgid:warn] [client 106.76.211.138:40323] mod_fcgid: can't apply process slot for /web/cgi-bin/php-fcgi
[Thu Oct 10 04:03:01 2013] [11814296] [fcgid:warn] [client 106.76.211.138:26866] mod_fcgid: can't apply process slot for /web/cgi-bin/php-fcgi

我面臨着同樣的問題,發現更多的哥達客戶都面臨着同樣的問題。 http://support.godaddy.com/groups/web-hosting/forum/topic/fcgid-internal-error/

看起來Godaddy發生了一些變化觸發了此錯誤,可以支持,但解決方案是使用專用或虛擬主機計划。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM