vBulletin SEO Forums

SEO

vBulletin Search Engine Optimization

Buy vBSEO Now! HACKER SAFE certified sites prevent over 99.9% of hacker crime.
ne nw
New vBSEO Discount Level for Network Builders Meet vBSEO Team in New York (Nov. 3rd & 4th) 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

problems after double post starting thread then deletion of one causes crash

This is a discussion on problems after double post starting thread then deletion of one causes crash within the Bug Reporting forums, part of the vBSEO SEO Plugin category; apparently, a user posted twice by accident, deleted one post, and now when you click on the post seo link, ...

Go Back   vBulletin SEO Forums > vBSEO SEO Plugin > Bug Reporting

Enhancing 80 million pages.

Register FAQ Members List Social Groups Calendar Search Today's Posts Mark Forums Read
  #1  
Old 11-04-2005, 11:54 AM
Member
 
Join Date: Oct 2005
Posts: 47
problems after double post starting thread then deletion of one causes crash

apparently, a user posted twice by accident, deleted one post, and now when you click on the post seo link, the following occurs:
PHP Code:
Warningmain(the-lounge/6791-computer-html.php): failed to open streamNo such file or directory in /home/x5worldc/public_html/vbseo.php on line 847
 
Warning
main(the-lounge/6791-computer-html.php): failed to open streamNo such file or directory in /home/x5worldc/public_html/vbseo.php on line 847
 
Warning
main(the-lounge/6791-computer-html.php): failed to open streamNo such file or directory in /home/x5worldc/public_html/vbseo.php on line 847
 
Fatal error
main(): Failed opening required 'the-lounge/6791-computer-html.php' (include_path='.:/usr/lib/php:/usr/local/lib/php'in /home/x5worldc/public_html/vbseo.php on line 847 
can't get the error to go away unless i turn vbseo off.

help!

direct link:
http://www.x5world.com/the-lounge/67...-question.html

http://www.x5world.com/showthread.php?t=6791
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #2  
Old 11-04-2005, 12:05 PM
Member
 
Join Date: Oct 2005
Posts: 47
Re: problems after double post starting thread then deletion of one causes crash

tried copying thread and deleting original.

new links:

direct link:
http://www.x5world.com/the-lounge/6792-computer-file-save-question.html

http://www.x5world.com/showthread.php?t=6792

deleted original thread. didn't work.

?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #3  
Old 11-04-2005, 12:44 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,432
Blog Entries: 1
Re: problems after double post starting thread then deletion of one causes crash

Hi,
you have a custom rewrite rules that matches your thread URL in this case. Try to locate this CRR and modify or remove it.
__________________
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

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!
  #4  
Old 11-04-2005, 01:33 PM
Member
 
Join Date: Oct 2005
Posts: 47
Re: problems after double post starting thread then deletion of one causes crash

these are the CRRs. don't see anything....


PHP Code:
'^articles\.php\?action=viewarticle&artid=(\d+)&page=(\d+)$' => 'viewarticle-$1-$2.html'
'^articles\.php\?action=viewarticle&artid=(\d+)$' 
=> 'showarticle-$1.html'
'^articles\.php\?action=viewcat&catid=(\d+)$' 
=> 'showcategory-$1.html'
'^articles\.php\?action=submitarticle$' 
=> 'submitarticle.html'
'^articles\.php\?action=viewfav$' 
=> 'viewfav.html'
'^articles\.php\?action=rss$' 
=> 'rss.html'
'^articles\.php\?action=authorlist$' 
=> 'authorlist.html'
'^articles\.php\?action=printarticle&artid=(\d+)$' 
=> 'printarticle-$1.html'
'^articles\.php\?action=sendarticle&artid=(\d+)$' 
=> 'sendarticle-$1.html'
'^articles\.php\?action=unmarkasfav&artid=(\d+)$' 
=> 'unmarkfav-$1.html'
'^articles\.php\?action=markasfav&artid=(\d+)$' 
=> 'markfav-$1.html'
'^articles\.php\?action=viewallimg&artid=(\d+)&title=([^&]+)$' 
=> 'viewimages-$1-title-$2.html'
'html\.php\?file=(.+)$' 
=> 'file-$1'
'^forums\.php'
=>'forums.html'
'^register\.php$' 
=> 'register.html'
'^sendmessage\.php$' 
=> 'contact.html'
'^showgroups\.php$' 
=> 'staff.html'
'^calendar\.php$' 
=> 'calendar.html'
'^faq\.php$' 
=> 'frequently-asked-questions.html' 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #5  
Old 11-04-2005, 01: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,432
Blog Entries: 1
Re: problems after double post starting thread then deletion of one causes crash

This one matches your "the-lounge/6792-computer-file-save-question.html" URL:

Quote:
'html\.php\?file=(.+)$' => 'file-$1'
Since you don't have "^" in the CRR, it is found at ANY place of URL. You may try the following ones instead:
Quote:
'^html\.php\?file=(.+)$' => 'file-$1'
Quote:
'html\.php\?file=(.+)$' => 'filepage-$1'
__________________
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

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!
  #6  
Old 11-04-2005, 01:51 PM
Member
 
Join Date: Oct 2005
Posts: 47
Re: problems after double post starting thread then deletion of one causes crash

that was it.

you are da MAN!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #7  
Old 11-04-2005, 01: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,432
Blog Entries: 1
Re: problems after double post starting thread then deletion of one causes crash

Ok, great
__________________
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

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!
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
vBSEO 2.4.0 Released - Includes Google AdSense Targeting Feature! Juan Muriente vBSEO Announcements 74 05-20-2006 10:29 PM
Problems with subscribed thread notifications Codeman05 Troubleshooting 4 03-30-2006 05:40 PM


All times are GMT -4. The time now is 02:42 PM.


Powered by vBulletin Version 3.8.0 Beta 3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.5 ©2008, Crawlability, Inc.