vBulletin SEO Forums

SEO

vBulletin Search Engine Optimization

Buy vBSEO Now! HACKER SAFE certified sites prevent over 99.9% of hacker crime.
ne nw
vBSEO Total Support Team Launches DeskPro New vBSEO Discount Level for Network Builders vBSEO 3.2.0 GOLD Has Landed Success with vBSEO = 600ore Web Visitors + $1400 in a Day! Crawlability Inc. Files for SEO Technology Patent
se sw

Apache Segfault with newthread.php

This is a discussion on Apache Segfault with newthread.php within the Troubleshooting forums, part of the vBSEO SEO Plugin category; When I submit a new thread in my forums I get the following in my apache logs: [notice] child pid ...

Go Back   vBulletin SEO Forums > vBSEO SEO Plugin > Troubleshooting

Enhancing 80 million pages.

Register FAQ Members List Social Groups Calendar Search Today's Posts Mark Forums Read
  #1  
Old 10-26-2005, 09:33 AM
Junior Member
 
Join Date: Oct 2005
Posts: 7
Apache Segfault with newthread.php

When I submit a new thread in my forums I get the following in my apache logs:

[notice] child pid 3278 exit signal Segmentation fault (11)

The post gets recorded in MYSQL and shows up in the forum. However, after the user hits submit he gets " the page cannot be displayed" in his web browser. When I disable vbseo it works fine. Does anyone have any ideas to get this issue resolved?

apache 2.0.54
php 5.0.4
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
  #2  
Old 10-26-2005, 09:49 PM
Junior Member
 
Join Date: Oct 2005
Posts: 7
Re: Apache Segfault with newthread.php

I fixed it, but I consider this a band aid. Since all of the php files were generating the errors. I modified the .htaccess file to this:

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 %{REQUEST_FILENAME} !admincp/
RewriteCond %{REQUEST_FILENAME} !modcp/
#RewriteRule ^(.*\.php)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]
RewriteRule ^(archive/.*)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]

Can you tell me if this will cause problems if leave the .htaccess file like this?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
  #3  
Old 10-26-2005, 10:34 PM
Juan Muriente's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Juan Carlos Muriente
Join Date: Jun 2005
Location: Puerto Rico
Posts: 12,761
Re: Apache Segfault with newthread.php

Quote:
Originally Posted by farisb
Can you tell me if this will cause problems if leave the .htaccess file like this?
We are looking into this issue. As for the .htaccess modification, it will disallow forwarding of old dynamic urls to new ones.

PM Sent.
__________________
Juan Muriente / Crawlability Inc.
Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service

vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
  #4  
Old 11-01-2005, 06:27 PM
Junior Member
 
Join Date: Oct 2005
Posts: 7
Re: Apache Segfault with newthread.php

Can someone help me with this?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
  #5  
Old 11-01-2005, 06:43 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,923
Re: Apache Segfault with newthread.php

Hello,

instead of commenting out the rewriterule, try using this code to exclude newthread.php from pre-processing:
Quote:
.....
RewriteCond %{REQUEST_FILENAME} !admincp/
RewriteCond %{REQUEST_FILENAME} !modcp/
RewriteCond %{REQUEST_FILENAME} !newthread\.php
RewriteRule ^(.*\.php)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]
.....
Please note, that it will still rewrite all links on newthread.php page.
__________________
Oleg Ignatiuk / Crawlability Inc.
Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service

vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
  #6  
Old 11-01-2005, 07:02 PM
Junior Member
 
Join Date: Oct 2005
Posts: 7
Re: Apache Segfault with newthread.php

I tried that but that did not work. Here is my current .htaccess file.

# 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 %{REQUEST_FILENAME} !admincp/
RewriteCond %{REQUEST_FILENAME} !modcp/
RewriteCond %{REQUEST_FILENAME} !newthread\.php
RewriteCond %{REQUEST_FILENAME} !newattachment\.php
RewriteRule ^(.*\.php)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]
RewriteRule ^(archive/.*)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
  #7  
Old 11-01-2005, 09:06 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,923
Re: Apache Segfault with newthread.php

PM sent
__________________
Oleg Ignatiuk / Crawlability Inc.
Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service

vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
  #8  
Old 11-01-2005, 10:28 PM
Junior Member
 
Join Date: Oct 2005
Posts: 7
Re: Apache Segfault with newthread.php

This issue has been resolved, thanks vbseo support!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
  #9  
Old 11-01-2005, 10:52 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,923
Re: Apache Segfault with newthread.php

Great
__________________
Oleg Ignatiuk / Crawlability Inc.
Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service

vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Closed Thread

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads

Thread Thread Starter Forum Replies Last Post
Matt Cutts Wants Simplified Apache Configuration (Including Mod_Rewrite) Joe Ward SEO Buzz 4 04-27-2006 04:35 PM
Apache erros log errors... GlitterKill Troubleshooting 1 03-30-2006 04:16 PM
Version works only with apache server... xb_ Bug Reporting 1 09-23-2005 08:46 PM


All times are GMT -4. The time now is 01:49 AM.


Powered by vBulletin Version 3.8.0 Release Candidate 2
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.5 ©2008, Crawlability, Inc.