BamaStangGuy
Sun 16th Sep '07, 7:24am
I just went from 1.3.39 to 2.2.6 and now have these errors appearing within my error_log file.
[Sun Sep 16 05:10:38 2007] [info] [client 70.245.21.220] (104)Connection reset by peer: core_output_filter: writing data to the network
[Sun Sep 16 05:10:38 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:10:38 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:10:38 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:10:38 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:10:38 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:10:38 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:10:38 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:10:38 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:10:38 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:10:38 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:10:38 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:11:03 2007] [info] [client 70.245.21.220] (104)Connection reset by peer: core_output_filter: writing data to the network
[Sun Sep 16 05:11:14 2007] [info] [client 70.245.21.220] (104)Connection reset by peer: core_output_filter: writing data to the network
[Sun Sep 16 05:11:21 2007] [info] [client 70.245.21.220] (104)Connection reset by peer: core_output_filter: writing data to the network
[Sun Sep 16 05:11:21 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:11:21 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:11:21 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:11:21 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:11:21 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:11:21 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:11:21 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:11:21 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:11:21 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:11:21 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:11:21 2007] [info] [client 70.245.21.220] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:12:16 2007] [info] [client 208.122.4.142] (32)Broken pipe: core_output_filter: writing data to the network
[Sun Sep 16 05:12:18 2007] [info] [client 70.245.21.220] (104)Connection reset by peer: core_output_filter: writing data to the network
[Sun Sep 16 05:16:30 2007] [error] [client 72.30.61.175] File does not exist: /home/lonestar/public_html/featured
Any idea what is causing that?
kerplunk
Sun 16th Sep '07, 1:21pm
Please paste your httpd.conf here.
BamaStangGuy
Sun 16th Sep '07, 5:28pm
ServerRoot "/usr/local/apache"
LoadModule bwlimited_module modules/mod_bwlimited.so
LoadModule auth_passthrough_module modules/mod_auth_passthrough.so
Include "/usr/local/apache/conf/php.conf"
ServerAdmin brentwil21@yahoo.com
DocumentRoot "/usr/local/apache/htdocs"
ErrorLog logs/error_log
LogLevel warn
DefaultType text/plain
ServerSignature On
ExtendedStatus On
LockFile logs/accept.lock
PidFile logs/httpd.pid
Group nobody
ServerName webserver.mustangevolution.com
Timeout 300
User nobody
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 3
MinSpareServers 10
MaxSpareServers 15
StartServers 10
MaxClients 180
MaxRequestsPerChild 500
<Location />
# Insert filter
SetOutputFilter DEFLATE
# Don't compress images
SetEnvIfNoCase Request_URI \
\.(?:gif|jpe?g|png)$ no-gzip dont-vary
# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary
</Location>
<Directory "/">
Options All
AllowOverride All
</Directory>
<Directory "/usr/local/apache/htdocs">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<IfModule dir_module>
DirectoryIndex index.html index.htm index.shtml index.xhtml index.wml index.perl index.pl index.plx index.ppl index.cgi index.jsp index.js index.jp index.php4 index.php3 index.php index.phtml default.htm default.html home.htm
</IfModule>
<Files ~ "^error_log$">
Order allow,deny
Deny from all
Satisfy All
</Files>
<FilesMatch "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</FilesMatch>
<IfModule log_config_module>
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
CustomLog logs/access_log common
<IfModule logio_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
</IfModule>
<IfModule alias_module>
ScriptAlias /cgi-bin/ "/usr/local/apache/cgi-bin/"
</IfModule>
<Directory "/usr/local/apache/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
<IfModule mime_module>
TypesConfig conf/mime.types
AddType application/x-gzip .gz .tgz
AddType application/x-compress .Z
</IfModule>
Listen 80
UserDir public_html
DirectoryIndex index.html index.htm index.shtml index.xhtml index.wml index.perl index.pl index.plx index.ppl index.cgi index.jsp index.js index.jp index.php4 index.php3 index.php index.phtml default.htm default.html home.htm
SSLPassPhraseDialog builtin
SSLSessionCache dbm:/usr/local/apache/logs/ssl_scache
SSLSessionCacheTimeout 300
SSLMutex file:/usr/local/apache/logs/ssl_mutex
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
LogLevel info
<IfDefine SSL>
Listen 443
AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl .crl
</IfDefine>
AddHandler cgi-script .cgi .pl
AddHandler server-parsed .shtml
AddType text/html .shtml
AddType application/x-tar .tgz
AddType text/vnd.wap.wml .wml
AddType image/vnd.wap.wbmp .wbmp
AddType text/vnd.wap.wmlscript .wmls
AddType application/vnd.wap.wmlc .wmlc
AddType application/vnd.wap.wmlscriptc .wmlsc
<Location /whm-server-status>
SetHandler server-status
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Location>
<Location /server-info>
SetHandler server-info
Order deny,allow
Deny from all
Allow from localhost
</Location>
# SUEXEC is supported
# DO NOT EDIT. AUTOMATICALLY GENERATED
NameVirtualHost 75.126.204.58:80
NameVirtualHost 75.126.205.224:80
NameVirtualHost 75.126.205.225:80
NameVirtualHost 75.126.205.226:80
NameVirtualHost 75.126.205.227:80
NameVirtualHost *
# DO NOT EDIT. AUTOMATICALLY GENERATED
<VirtualHost 75.126.205.224:80>
ServerName webserver.mustangevolution.com
DocumentRoot /usr/local/apache/htdocs
ServerAdmin brentwil21@yahoo.com
</VirtualHost>
# Default vhost for unbound IPs
<VirtualHost *>
ServerName webserver.mustangevolution.com
DocumentRoot /usr/local/apache/htdocs
ServerAdmin brentwil21@yahoo.com
</VirtualHost>
# DO NOT EDIT. AUTOMATICALLY GENERATED
# DO NOT EDIT. AUTOMATICALLY GENERATED
# DO NOT EDIT. AUTOMATICALLY GENERATED
<VirtualHost 75.126.205.224:80>
ServerName allaboutthehoneymoon.com
ServerAlias www.allaboutthehoneymoon.com
DocumentRoot /home/allabout/public_html
ServerAdmin webmaster@allaboutthehoneymoon.com
UseCanonicalName Off
CustomLog /usr/local/apache/domlogs/allaboutthehoneymoon.com combined
CustomLog /usr/local/apache/domlogs/allaboutthehoneymoon.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
<IfModule !mod_disable_suexec.c>
SuexecUserGroup allabout allabout
</IfModule>
ScriptAlias /cgi-bin/ /home/allabout/public_html/cgi-bin/
</VirtualHost>
# DO NOT EDIT. AUTOMATICALLY GENERATED
# DO NOT EDIT. AUTOMATICALLY GENERATED
# DO NOT EDIT. AUTOMATICALLY GENERATED
<VirtualHost 75.126.205.224:80>
ServerName haydenpanettierepictures.net
ServerAlias www.haydenpanettierepictures.net
DocumentRoot /home/hayden/public_html
ServerAdmin webmaster@haydenpanettierepictures.net
UseCanonicalName Off
CustomLog /usr/local/apache/domlogs/haydenpanettierepictures.net combined
CustomLog /usr/local/apache/domlogs/haydenpanettierepictures.net-bytes_log "%{%s}t %I .\n%{%s}t %O ."
<IfModule !mod_disable_suexec.c>
SuexecUserGroup hayden hayden
</IfModule>
ScriptAlias /cgi-bin/ /home/hayden/public_html/cgi-bin/
</VirtualHost>
# DO NOT EDIT. AUTOMATICALLY GENERATED
<VirtualHost 75.126.205.224:80>
ServerName honeymoonforums.com
ServerAlias www.honeymoonforums.com
DocumentRoot /home/honey/public_html
ServerAdmin webmaster@honeymoonforums.com
UseCanonicalName Off
CustomLog /usr/local/apache/domlogs/honeymoonforums.com combined
CustomLog /usr/local/apache/domlogs/honeymoonforums.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
<IfModule !mod_disable_suexec.c>
SuexecUserGroup honey honey
</IfModule>
ScriptAlias /cgi-bin/ /home/honey/public_html/cgi-bin/
</VirtualHost>
# DO NOT EDIT. AUTOMATICALLY GENERATED
<VirtualHost 75.126.205.224:80>
ServerName jeepitreal.com
ServerAlias www.jeepitreal.com
DocumentRoot /home/jeep/public_html
ServerAdmin webmaster@jeepitreal.com
UseCanonicalName Off
CustomLog /usr/local/apache/domlogs/jeepitreal.com combined
CustomLog /usr/local/apache/domlogs/jeepitreal.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
<IfModule !mod_disable_suexec.c>
SuexecUserGroup jeep jeep
</IfModule>
ScriptAlias /cgi-bin/ /home/jeep/public_html/cgi-bin/
</VirtualHost>
# DO NOT EDIT. AUTOMATICALLY GENERATED
<VirtualHost 75.126.205.224:80>
ServerName calvary-ag.net
ServerAlias www.calvary-ag.net
DocumentRoot /home/ken/public_html
ServerAdmin webmaster@calvary-ag.net
UseCanonicalName Off
CustomLog /usr/local/apache/domlogs/calvary-ag.net combined
CustomLog /usr/local/apache/domlogs/calvary-ag.net-bytes_log "%{%s}t %I .\n%{%s}t %O ."
<IfModule !mod_disable_suexec.c>
SuexecUserGroup ken ken
</IfModule>
ScriptAlias /cgi-bin/ /home/ken/public_html/cgi-bin/
</VirtualHost>
# DO NOT EDIT. AUTOMATICALLY GENERATED
<VirtualHost 75.126.205.224:80>
ServerName lawrencespeed.com
ServerAlias www.lawrencespeed.com
DocumentRoot /home/lawrence/public_html
ServerAdmin webmaster@lawrencespeed.com
UseCanonicalName Off
CustomLog /usr/local/apache/domlogs/lawrencespeed.com combined
CustomLog /usr/local/apache/domlogs/lawrencespeed.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
<IfModule !mod_disable_suexec.c>
SuexecUserGroup lawrence lawrence
</IfModule>
ScriptAlias /cgi-bin/ /home/lawrence/public_html/cgi-bin/
</VirtualHost>
# DO NOT EDIT. AUTOMATICALLY GENERATED
# DO NOT EDIT. AUTOMATICALLY GENERATED
<VirtualHost 75.126.205.224:80>
ServerName purebluemedia.com
ServerAlias www.purebluemedia.com
DocumentRoot /home/pureblue/public_html
ServerAdmin webmaster@purebluemedia.com
UseCanonicalName Off
CustomLog /usr/local/apache/domlogs/purebluemedia.com combined
CustomLog /usr/local/apache/domlogs/purebluemedia.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
<IfModule !mod_disable_suexec.c>
SuexecUserGroup pureblue pureblue
</IfModule>
ScriptAlias /cgi-bin/ /home/pureblue/public_html/cgi-bin/
</VirtualHost>
# DO NOT EDIT. AUTOMATICALLY GENERATED
<VirtualHost 75.126.205.224:80>
ServerName webserver.mustangevolution.com.zz
ServerAlias www.webserver.mustangevolution.com.zz
DocumentRoot /home/rvadmin/public_html
ServerAdmin webmaster@webserver.mustangevolution.com.zz
UseCanonicalName Off
CustomLog /usr/local/apache/domlogs/webserver.mustangevolution.com.zz combined
CustomLog /usr/local/apache/domlogs/webserver.mustangevolution.com.zz-bytes_log "%{%s}t %I .\n%{%s}t %O ."
<IfModule !mod_disable_suexec.c>
SuexecUserGroup rvadmin rvadmin
</IfModule>
ScriptAlias /cgi-bin/ /home/rvadmin/public_html/cgi-bin/
</VirtualHost>
# DO NOT EDIT. AUTOMATICALLY GENERATED
# DO NOT EDIT. AUTOMATICALLY GENERATED
<VirtualHost 75.126.205.224:80>
ServerName 4wdevolution.com
ServerAlias www.4wdevolution.com
DocumentRoot /home/ugay/public_html
ServerAdmin webmaster@4wdevolution.com
UseCanonicalName Off
CustomLog /usr/local/apache/domlogs/4wdevolution.com combined
CustomLog /usr/local/apache/domlogs/4wdevolution.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
<IfModule !mod_disable_suexec.c>
SuexecUserGroup ugay ugay
</IfModule>
ScriptAlias /cgi-bin/ /home/ugay/public_html/cgi-bin/
</VirtualHost>
# DO NOT EDIT. AUTOMATICALLY GENERATED
# DO NOT EDIT. AUTOMATICALLY GENERATED
<VirtualHost 75.126.205.224:80>
ServerName v6stangs.com
ServerAlias www.v6stangs.com
DocumentRoot /home/v6stangs/public_html
ServerAdmin webmaster@v6stangs.com
UseCanonicalName Off
CustomLog /usr/local/apache/domlogs/v6stangs.com combined
CustomLog /usr/local/apache/domlogs/v6stangs.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
<IfModule !mod_disable_suexec.c>
SuexecUserGroup v6stangs v6stangs
</IfModule>
ScriptAlias /cgi-bin/ /home/v6stangs/public_html/cgi-bin/
</VirtualHost>
# DO NOT EDIT. AUTOMATICALLY GENERATED
<VirtualHost 75.126.205.224:80>
ServerName ads.purebluemedia.com
ServerAlias www.ads.purebluemedia.com
DocumentRoot /home/pureblue/public_html/ads
ServerAdmin webmaster@ads.purebluemedia.com
UseCanonicalName Off
CustomLog /usr/local/apache/domlogs/ads.purebluemedia.com combined
CustomLog /usr/local/apache/domlogs/ads.purebluemedia.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
<IfModule !mod_disable_suexec.c>
SuexecUserGroup pureblue pureblue
</IfModule>
ScriptAlias /cgi-bin/ /home/pureblue/public_html/ads/cgi-bin/
</VirtualHost>
# DO NOT EDIT. AUTOMATICALLY GENERATED
<VirtualHost 75.126.205.225:80>
ServerName exposethemusic.net
ServerAlias www.exposethemusic.net
DocumentRoot /home/exforum/public_html
ServerAdmin webmaster@exposethemusic.net
UseCanonicalName Off
CustomLog /usr/local/apache/domlogs/exposethemusic.net combined
CustomLog /usr/local/apache/domlogs/exposethemusic.net-bytes_log "%{%s}t %I .\n%{%s}t %O ."
<IfModule !mod_disable_suexec.c>
SuexecUserGroup exforum exforum
</IfModule>
ScriptAlias /cgi-bin/ /home/exforum/public_html/cgi-bin/
</VirtualHost>
# DO NOT EDIT. AUTOMATICALLY GENERATED
<VirtualHost 75.126.205.226:80>
ServerName lonestarstangs.com
ServerAlias www.lonestarstangs.com
DocumentRoot /home/lonestar/public_html
ServerAdmin webmaster@lonestarstangs.com
UseCanonicalName Off
CustomLog /usr/local/apache/domlogs/lonestarstangs.com combined
CustomLog /usr/local/apache/domlogs/lonestarstangs.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
<IfModule !mod_disable_suexec.c>
SuexecUserGroup lonestar lonestar
</IfModule>
ScriptAlias /cgi-bin/ /home/lonestar/public_html/cgi-bin/
</VirtualHost>
# DO NOT EDIT. AUTOMATICALLY GENERATED
<VirtualHost 75.126.205.227:80>
ServerName mustangevolution.com
ServerAlias www.mustangevolution.com
DocumentRoot /home/evo/public_html
ServerAdmin webmaster@mustangevolution.com
UseCanonicalName Off
CustomLog /usr/local/apache/domlogs/mustangevolution.com combined
CustomLog /usr/local/apache/domlogs/mustangevolution.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
<IfModule !mod_disable_suexec.c>
SuexecUserGroup evo evo
</IfModule>
ScriptAlias /cgi-bin/ /home/evo/public_html/cgi-bin/
</VirtualHost>
# Rewrite Rules Per Directory #
<Directory /home/evo/public_html>
RewriteEngine On
RewriteBase /
RewriteRule /mustang-pictures/file_([0-9]+)\.jpg$ /mustang-pictures/file.php?n=$1 [L]
RewriteRule ^mustang-cologne-by-estee-lauder/ http://www.mustangevolution.com/20070508390/ [L,R=301]
RewriteRule ^ford-to-cut-mustang-packages/ http://www.mustangevolution.com/20070504388/ [L,R=301]
RewriteRule ^2007-saleen-h281-ford-mustang/ http://www.mustangevolution.com/20070503380/ [L,R=301]
RewriteRule ^carroll-shelby-talks-history-of-gt500kr/ http://www.mustangevolution.com/20070501377/ [L,R=301]
RewriteRule ^t3545/ http://www.mustangevolution.com/20070430373/ [L,R=301]
RewriteRule ^2008-shelby-gt500kr-video/ http://www.mustangevolution.com/20070417369/ [L,R=301]
RewriteRule ^2008-shelby-gt500-ordering-guide/ http://www.mustangevolution.com/20070417367/ [L,R=301]
RewriteRule ^2007-shelby-gt500-red-stripe-package/ http://www.mustangevolution.com/20070412344/ [L,R=301]
RewriteRule ^special-edition-mustangs-how-many-is-too-many/ http://www.mustangevolution.com/20070403336/ [L,R=301]
RewriteRule ^2008-shelby-gt-h-mustang-convertible/ http://www.mustangevolution.com/20070402332/ [L,R=301]
RewriteRule ^2008-shelby-gt500kr/ http://www.mustangevolution.com/20070330322/ [L,R=301]
RewriteRule ^new-mustang-to-be-unveiled-at-barrett-jackson-auction/ http://www.mustangevolution.com/20070327320/ [L,R=301]
RewriteRule ^retractable-hardtop-mustang-video/ http://www.mustangevolution.com/20070325318/ [L,R=301]
RewriteRule ^aftermarket-mustang-retractable-hardtop-developed/ http://www.mustangevolution.com/20070322316/ [L,R=301]
RewriteRule ^roush-to-build-only-one-blackjack-mustang-convertible/ http://www.mustangevolution.com/20070321313/ [L,R=301]
RewriteRule ^new-roush-wheels-for-2005-2007-mustangs/ http://www.mustangevolution.com/20070315306/ [L,R=301]
RewriteRule ^retro-roush-rear-window-louvers/ http://www.mustangevolution.com/20070306277/ [L,R=301]
RewriteRule ^roush-to-produce-100-stage-3-blackjack-mustangs/ http://www.mustangevolution.com/20070219211/ [L,R=301]
RewriteRule ^new-mustang-billboards-blur-background/ http://www.mustangevolution.com/20070215205/ [L,R=301]
RewriteRule ^ten-things-the-next-mustang-must-have/ http://www.mustangevolution.com/20070215204/ [L,R=301]
RewriteRule ^philadelphia-international-car-show-mustangs/ http://www.mustangevolution.com/20070211188/ [L,R=301]
RewriteRule ^bbs-automotive-technology-files-insolvency-request/ http://www.mustangevolution.com/20070207186/ [L,R=301]
RewriteRule ^2006-aj-foyt-coyote-edition-mustang/ http://www.mustangevolution.com/20070122182/ [L,R=301]
RewriteRule ^more-next-generation-mustang-spy-shots/ http://www.mustangevolution.com/20070122169/ [L,R=301]
RewriteRule ^no-4-door-mustang-says-ford/ http://www.mustangevolution.com/20061216153/ [L,R=301]
RewriteRule ^mustang-sedan-wagon-rumored-in-next-mustang-design/ http://www.mustangevolution.com/20061214151/ [L,R=301]
RewriteRule ^ford-mustang-video-game/ http://www.mustangevolution.com/200512145/ [L,R=301]
RewriteRule ^chip-foose-stallion-mustang/ http://www.mustangevolution.com/200601216/ [L,R=301]
RewriteRule ^shelby-gt500-convertible/ http://www.mustangevolution.com/200602157/ [L,R=301]
RewriteRule ^shelby-2005-cs6/ http://www.mustangevolution.com/200603288/ [L,R=301]
RewriteRule ^2007-shelby-gt500/ http://www.mustangevolution.com/200605019/ [L,R=301]
RewriteRule ^stockton-firm-faces-suit-ford-trademark-violation/ http://www.mustangevolution.com/2006051610/ [L,R=301]
RewriteRule ^shelby-mustang-gt500-prices/ http://www.mustangevolution.com/2006061311/ [L,R=301]
RewriteRule ^2005-rendered-mustang-t-tops/ http://www.mustangevolution.com/2006062912/ [L,R=301]
RewriteRule ^ford-bold-moves-gt500/ http://www.mustangevolution.com/2006071913/ [L,R=301]
RewriteRule ^2008-boss-mustang-return/ http://www.mustangevolution.com/2006072614/ [L,R=301]
RewriteRule ^retail-shelby-gt-h/ http://www.mustangevolution.com/2006081015/ [L,R=301]
RewriteRule ^2007-shelby-gt-mustang-information/ http://www.mustangevolution.com/2006081641/ [L,R=301]
RewriteRule ^interview-with-doug-gaffka-on-designing-the-shelby-gt500/ http://www.mustangevolution.com/2006082051/ [L,R=301]
RewriteRule ^the-legend-mustang/ http://www.mustangevolution.com/2006082755/ [L,R=301]
RewriteRule ^ford-mustang-sales-up-64-from-august-2005/ http://www.mustangevolution.com/2006090357/ [L,R=301]
RewriteRule ^ford-mustangs-myspace/ http://www.mustangevolution.com/2006090359/ [L,R=301]
RewriteRule ^shelby-gt500-road-america/ http://www.mustangevolution.com/2006090461/ [L,R=301]
RewriteRule ^roush-427r-mustang/ http://www.mustangevolution.com/2006090564/ [L,R=301]
RewriteRule ^ford-bold-moves-street-racing-video-game/ http://www.mustangevolution.com/2006090868/ [L,R=301]
RewriteRule ^commercial-video-shelby-gt500-in-germany/ http://www.mustangevolution.com/2006090870/ [L,R=301]
RewriteRule ^vmptuning-gets-505-to-the-wheels-with-gt500/ http://www.mustangevolution.com/2006091272/ [L,R=301]
RewriteRule ^the-next-mustang-a-first-look-at-the-2009-ford-mustang/ http://www.mustangevolution.com/2006091981/ [L,R=301]
RewriteRule ^mustang-gt-520/ http://www.mustangevolution.com/2006092594/ [L,R=301]
RewriteRule ^2007-mustang-meets-ipod/ http://www.mustangevolution.com/2006101797/ [L,R=301]
RewriteRule ^saleen-2009-mustang-facelift/ http://www.mustangevolution.com/2006102299/ [L,R=301]
RewriteRule ^shelby-gt500-debuts-as-nascar-pace-car/ http://www.mustangevolution.com/20061023105/ [L,R=301]
RewriteRule ^ford-rolls-out-ford-mustang-for-sema-2006/ http://www.mustangevolution.com/20061030107/ [L,R=301]
RewriteRule ^boss-302-engine-back/ http://www.mustangevolution.com/20061031114/ [L,R=301]
RewriteRule ^sct-brings-next-generation-tuning-with-livewire/ http://www.mustangevolution.com/20061112120/ [L,R=301]
RewriteRule ^2010-mustang-wagon-speculated-by-german-magazine/ http://www.mustangevolution.com/20061114126/ [L,R=301]
RewriteRule ^giugiaro-2010-mustang-concept-picture/ http://www.mustangevolution.com/20061117129/ [L,R=301]
RewriteRule ^viva-la-mustang-ford-releases-giugiaro-mustang-information/ http://www.mustangevolution.com/20061128131/ [L,R=301]
RewriteRule ^shelby-gt-police-chase-commercial/ http://www.mustangevolution.com/20061203140/ [L,R=301]
RewriteRule ^bullitt-and-boss-mustang-to-return-in-late-2007/ http://www.mustangevolution.com/20061206141/ [L,R=301]
RewriteRule ^shelby-gt-mustang-production-starts-in-january/ http://www.mustangevolution.com/20061206142/ [L,R=301]
RewriteRule ^35-duratec-v-6-and-46-3-valve-v-8-engines-top-wards-10-best-engines/ http://www.mustangevolution.com/20061206143/ [L,R=301]
RewriteRule ^2007050338/ http://www.mustangevolution.com/20070503380/ [L,R=301]
RewriteRule ^me.htm http://www.mustangevolution.com/forum/t25030 [L,R=301]
RewriteCond %{HTTP_HOST} !^www\.mustangevolution\.com
RewriteRule ^(.*)$ http://www.mustangevolution.com/$1 [L,R=301]
RewriteCond %{REQUEST_URI} /+[^\.]+$
RewriteRule ^(.+[^/])$ /$1/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</Directory>
<Directory /home/evo/public_html/forum>
# Comment the following line (add '#' at the beginning)
# to disable mod_rewrite functions.
# Please note: you still need to disable the hack in
# the vBSEO control panel to stop url rewrites.
RewriteEngine On
# Some servers require the Rewritebase directive to be
# enabled (remove '#' at the beginning to activate)
# Please note: when enabled, you must include the path
# to your root vB folder (i.e. RewriteBase /forums)
RewriteBase /forum
RewriteRule ^u([0-9]+)/$ http://www.mustangevolution.com/forum/users/$1/ [L,R=301]
RewriteCond %{HTTP_HOST} !^www\.mustangevolution\.com
RewriteCond %{REQUEST_URI} forum/
RewriteRule (.*) http://www.mustangevolution.com/forum/$1 [L,R=301]
RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
RewriteCond %{QUERY_STRING} !vbseourl=
RewriteCond %{REQUEST_URI} !(admincp/|modcp/|chat|cron)
RewriteRule ^(.*\.php)$ vbseo.php?vbseourl=$1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} !\.(jpg|gif)$
RewriteRule ^(archive/.*)$ vbseo.php?vbseourl=$1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ vbseo.php?vbseourl=$1 [L,QSA]
</Directory>
<Directory /home/evo/public_html/articles>
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.mustangevolution\.com
RewriteCond %{REQUEST_URI} articles/
RewriteRule ^(.*)$ http://www.mustangevolution.com/articles/$1 [L,R=301]
RewriteCond %{REQUEST_URI} /+[^\.]+$
RewriteCond %{REQUEST_URI} /articles/
RewriteRule ^(.+[^/])$ /articles/$1/ [R=301,L]
RewriteBase /articles/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /articles/index.php [L]
</Directory>
<Directory /home/lonestar/public_html>
RewriteEngine Off
</Directory>
<Directory /home/lonestar/public_html/forum>
# Comment the following line (add '#' at the beginning)
# to disable mod_rewrite functions.
# Please note: you still need to disable the hack in
# the vBSEO control panel to stop url rewrites.
RewriteEngine On
# Some servers require the Rewritebase directive to be
# enabled (remove '#' at the beginning to activate)
# Please note: when enabled, you must include the path
# to your root vB folder (i.e. RewriteBase /forums)
#RewriteBase /
RewriteCond %{HTTP_HOST} !^www\.lonestarstangs\.com
RewriteRule ^(.*)$ http://www.lonestarstangs.com/forum$1 [L,R=301]
RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
RewriteCond %{QUERY_STRING} !vbseourl=
RewriteCond %{REQUEST_URI} !(admincp/|modcp/|chat|cron)
RewriteRule ^(.*\.php)$ vbseo.php?vbseourl=$1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} !\.(jpg|gif)$
RewriteRule ^(archive/.*)$ vbseo.php?vbseourl=$1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ vbseo.php?vbseourl=$1 [L,QSA]
</Directory>
<Directory /home/exforum/public_html>
# Comment the following line (add '#' at the beginning)
# to disable mod_rewrite functions.
# Please note: you still need to disable the hack in
# the vBSEO control panel to stop url rewrites.
RewriteEngine On
# Some servers require the Rewritebase directive to be
# enabled (remove '#' at the beginning to activate)
# Please note: when enabled, you must include the path
# to your root vB folder (i.e. RewriteBase /forums)
#RewriteBase /
RewriteCond %{HTTP_HOST} !^www\.exposethemusic\.net
RewriteRule (.*) http://www.exposethemusic.net/$1 [L,R=301]
RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
RewriteCond %{QUERY_STRING} !vbseourl=
RewriteCond %{REQUEST_URI} !(admincp/|modcp/|chat|cron)
RewriteRule ^(.*\.php)$ vbseo.php?vbseourl=$1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} !\.(jpg|gif)$
RewriteRule ^(archive/.*)$ vbseo.php?vbseourl=$1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ vbseo.php?vbseourl=$1 [L,QSA]
</Directory>
# DO NOT EDIT. AUTOMATICALLY GENERATED
# SSL
<IfDefine SSL>
</IfDefine>
# DO NOT EDIT. AUTOMATICALLY GENERATED
ErrorDocument 400 /400.shtml
ErrorDocument 401 /401.shtml
ErrorDocument 403 /403.shtml
ErrorDocument 404 /404.shtml
ErrorDocument 500 /500.shtml
ScriptAlias /cgi-sys/ /usr/local/cpanel/cgi-sys/
Alias /bandwidth/ /usr/local/bandmin/htdocs/
Alias /sys_cpanel/ /usr/local/cpanel/sys_cpanel/
Alias /java-sys/ /usr/local/cpanel/java-sys/
Alias /img-sys/ /usr/local/cpanel/img-sys/
Alias /akopia/ /usr/local/cpanel/3rdparty/interchange/share/akopia/
Alias /neo-images/ /usr/local/cpanel/base/neomail/neo-images/
ScriptAliasMatch ^/cpanel/(.*) /usr/local/cpanel/cgi-sys/redirect.cgi
ScriptAlias /cpanel /usr/local/cpanel/cgi-sys/redirect.cgi
ScriptAlias /whm /usr/local/cpanel/cgi-sys/whmredirect.cgi
ScriptAlias /securewhm /usr/local/cpanel/cgi-sys/swhmredirect.cgi
ScriptAlias /webmail /usr/local/cpanel/cgi-sys/wredirect.cgi
ScriptAliasMatch ^/webmail/(.*) /usr/local/cpanel/cgi-sys/wredirect.cgi
ScriptAliasMatch ^/kpanel/(.*) /usr/local/cpanel/cgi-sys/redirect.cgi
ScriptAlias /controlpanel /usr/local/cpanel/cgi-sys/redirect.cgi
ScriptAlias /securecontrolpanel /usr/local/cpanel/cgi-sys/sredirect.cgi
Alias /mailman/archives/ /usr/local/cpanel/3rdparty/mailman/archives/public/
ScriptAlias /mailman/ /usr/local/cpanel/3rdparty/mailman/cgi-bin/
Alias /pipermail/ /usr/local/cpanel/3rdparty/mailman/archives/public/
Alias /interchange/ /usr/local/cpanel/3rdparty/interchange/share/interchange/
Alias /interchange-5/ /usr/local/cpanel/3rdparty/interchange/share/interchange-5/
phpinfo if needed: http://www.mustangevolution.com/php.php
BamaStangGuy
Tue 18th Sep '07, 1:56am
No ones seen this before? They are still hitting me constantly.
[Mon Sep 17 23:53:58 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:00 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:01 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:03 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:06 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:15 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:16 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:17 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:18 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:19 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:24 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:26 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:27 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:27 2007] [info] [client 207.196.190.25] (104)Connection reset by peer: core_output_filter: writing data to the network
[Mon Sep 17 23:54:30 2007] [info] [client 71.110.241.242] (104)Connection reset by peer: core_output_filter: writing data to the network
[Mon Sep 17 23:54:30 2007] [info] [client 71.110.241.242] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:41 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:42 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:43 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:49 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:52 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:53 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:54 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:55 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:56 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:57 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:58 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:54:59 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:55:07 2007] [info] [client 66.168.103.113] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:55:22 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:55:23 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:55:30 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:55:41 2007] [info] [client 72.20.225.153] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:55:41 2007] [info] [client 72.20.225.153] (104)Connection reset by peer: core_output_filter: writing data to the network
[Mon Sep 17 23:55:50 2007] [info] server seems busy, (you may need to increase StartServers, or Min/MaxSpareServers), spawning 8 children, there are 9 idle, and 22 total children
[Mon Sep 17 23:55:51 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:55:52 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:55:53 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:55:54 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:55:55 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:55:56 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:55:57 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:55:58 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:55:59 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:56:00 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:56:01 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:56:02 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:56:03 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:56:04 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
[Mon Sep 17 23:56:17 2007] [info] [client ::1] (32)Broken pipe: core_output_filter: writing data to the network
AyKuT
Tue 18th Sep '07, 2:08am
I am also having the same and hit your message while googling around. I found some related links about it but couldn't fix it yet. One of them is http://httpd.apache.org/docs/2.0/faq/all_in_one.html#error.sendfile. I added "EnableSendfile off" but nothing changed. May be someone else knows the resolution?
BamaStangGuy
Tue 18th Sep '07, 4:23am
My colocation setup is almost complete and I'll be able to get away from Cpanel. I have a feeling once I get control over compiling apache and php it will go away. I think cpanel is configuring it in a funky way.
eva2000
Thu 20th Sep '07, 7:58am
probably get more help if you asked on webhostingtalk.com forums for this ;)
TECK
Mon 24th Sep '07, 8:59pm
Disable all rewrite rules you use. You will notice that all your broken pipes are fixed.
You have a bad rule that breaks everything.. maybe even several ones.
However, it is enough one bad rule to generate those errors.
BamaStangGuy, I already said to you several times that it is time to toss crapache and get a decent web server. :)
vBulletin® v3.8.0 Beta 4, Copyright ©2000-2008, Jelsoft Enterprises Ltd.