vBadvanced Forums  
Go Back   vBadvanced Forums > vBadvanced Products > vBadvanced CMPS > vBa CMPS v4.0 Support > Troubleshooting & Problems

Reply
 
Thread Tools Display Modes
  #1  
Old 04-11-2010, 03:03 AM
wynode wynode is offline
Member
 
Join Date: Aug 2004
Posts: 50
Default Problem wrapping vBA CMPS around vBulletin Search.php

Hi,

I'm trying to wrap a vBA CMPS page around the vBulleting 4.0.2 search page but am getting the following errors:
1. A second navbar is showing up
2. The "Autocomplete" when typing in the first 3 characters of a username doesn't work.

The process I've used to wrap the page is:
1. Create a new module page
2. Integrate the page using the "THIS SCRIPT" method (the value being 'search').

I've attached a screenshot.

I suspect the problem has to do with the fact that vB shows the navbar whenever a call is made to the /forum/search.php file.

Thoughts ?
Attached Images
File Type: png search error.png (32.5 KB, 43 views)
Reply With Quote
  #2  
Old 04-12-2010, 12:02 PM
Brian's Avatar
Brian Brian is offline
Administrator
 
Join Date: Jan 2004
Location: Georgia, USA
Posts: 34,240
Default

This is a known issue that is still being looked into and will hopefully be resolved with the next version.
__________________
Frequently Asked Questions
CMPS Users Manual

For vBadvanced software assistance, please use the support forums.
Unsolicted PMs, IMs, and email will not be responded to.
If you have a non-software related question or problem with your account, please submit a support ticket.
Reply With Quote
  #3  
Old 04-12-2010, 09:38 PM
wynode wynode is offline
Member
 
Join Date: Aug 2004
Posts: 50
Default

Cheers thanks.
Reply With Quote
  #4  
Old 04-12-2010, 11:02 PM
shikeren shikeren is offline
Junior Member
 
Join Date: Jan 2008
Posts: 6
Default

thank you
Reply With Quote
  #5  
Old 05-01-2010, 11:45 AM
allcdnboy allcdnboy is offline
Junior Member
 
Join Date: Jan 2007
Posts: 16
Default

good. i can quit banging my head against the wall thinking that it was something to do with the way I integrated it
Reply With Quote
  #6  
Old 05-04-2010, 03:24 PM
Brian's Avatar
Brian Brian is offline
Administrator
 
Join Date: Jan 2004
Location: Georgia, USA
Posts: 34,240
Default

Are you still having this problem in vBa CMPS v4.0.0? It *should* have been resolved in that release.
__________________
Frequently Asked Questions
CMPS Users Manual

For vBadvanced software assistance, please use the support forums.
Unsolicted PMs, IMs, and email will not be responded to.
If you have a non-software related question or problem with your account, please submit a support ticket.
Reply With Quote
  #7  
Old 05-05-2010, 02:07 PM
burntire burntire is offline
Member
 
Join Date: Jul 2006
Posts: 63
Default

The problem still occurs with IE7, but not IE8.
__________________
www.highperformancestangs.com
Reply With Quote
  #8  
Old 05-06-2010, 02:30 PM
Brian's Avatar
Brian Brian is offline
Administrator
 
Join Date: Jan 2004
Location: Georgia, USA
Posts: 34,240
Default

Ahh, I'm pretty sure I see the issue. Looks like vBulletin is setting part of the navbar in their search.php file, but it's getting reset at a later point and preventing the CMPS replacements from working properly. You should be able to resolve this by looking in your includes/vba_cmps_include_top.php file for this code:
PHP Code:
$navbits[''] = $pagetitle
And adding this code just Above:
PHP Code:
            if (THIS_SCRIPT == 'search' AND $_REQUEST['do'] == 'intro')
            {
                
$navbits = array();
            } 
__________________
Frequently Asked Questions
CMPS Users Manual

For vBadvanced software assistance, please use the support forums.
Unsolicted PMs, IMs, and email will not be responded to.
If you have a non-software related question or problem with your account, please submit a support ticket.
Reply With Quote
  #9  
Old 05-08-2010, 07:34 AM
wynode wynode is offline
Member
 
Join Date: Aug 2004
Posts: 50
Default

Thanks Brian. That fixed the navbar issue however the autocomplete function (item 2 in the first post) still doesn't work.
Reply With Quote
  #10  
Old 05-08-2010, 11:47 AM
Brian's Avatar
Brian Brian is offline
Administrator
 
Join Date: Jan 2004
Location: Georgia, USA
Posts: 34,240
Default

Sorry I overlooked that before. It's hard to say for sure, but it looks like that may be a result of this bug:
http://www.vbadvanced.com/forum/showthread.php?t=40215

Can you try applying the fix there and see if that helps?
__________________
Frequently Asked Questions
CMPS Users Manual

For vBadvanced software assistance, please use the support forums.
Unsolicted PMs, IMs, and email will not be responded to.
If you have a non-software related question or problem with your account, please submit a support ticket.
Reply With Quote
  #11  
Old 05-13-2010, 08:54 AM
wynode wynode is offline
Member
 
Join Date: Aug 2004
Posts: 50
Default

Quote:
Originally Posted by Brian View Post
Sorry I overlooked that before. It's hard to say for sure, but it looks like that may be a result of this bug:
http://www.vbadvanced.com/forum/showthread.php?t=40215

Can you try applying the fix there and see if that helps?
That fixed it thanks!
Reply With Quote
  #12  
Old 06-28-2010, 02:58 PM
allcdnboy allcdnboy is offline
Junior Member
 
Join Date: Jan 2007
Posts: 16
Default

this didn't work for me ... http://sports.fitness.com/search.php...e=vBForum_Post
Reply With Quote
  #13  
Old 06-28-2010, 03:21 PM
Brian's Avatar
Brian Brian is offline
Administrator
 
Join Date: Jan 2004
Location: Georgia, USA
Posts: 34,240
Default

I'm not sure why that wouldn't have worked, but if you would like to submit a support ticket via the Members' Area here I'll be glad to take a look at things for you.
__________________
Frequently Asked Questions
CMPS Users Manual

For vBadvanced software assistance, please use the support forums.
Unsolicted PMs, IMs, and email will not be responded to.
If you have a non-software related question or problem with your account, please submit a support ticket.
Reply With Quote
  #14  
Old 06-06-2012, 12:34 PM
JulianD JulianD is offline
Junior Member
 
Join Date: Oct 2005
Posts: 17
Default

I have a similar problem when I try to wrap a vBadvanced page with showthread.php and a permission error is shown. The navbar appears dupplicated in the error page.

Any ideas?

vBadvanced: 4.2
vBulletin 4.2
Reply With Quote
  #15  
Old 06-08-2012, 06:25 PM
JulianD JulianD is offline
Junior Member
 
Join Date: Oct 2005
Posts: 17
Default

Anyone? Please? I know this thread is old but I think the problem might be related and it ruins the integration of showthread.php for me.
Reply With Quote
  #16  
Old 08-15-2012, 01:50 PM
Craigr Craigr is offline
Junior Member
 
Join Date: Jan 2005
Posts: 5
Default

I have the same problem. On my search page i have 2 navigation bars.
I tried adding the code ot vba_cmps_include_top.php, but still two appear.

Any ideas?
Thanks, Craig
__________________
Special Forces Roll Of Honour : http://www.specialforcesroh.com
Unofficial Steven Seagal : http://www.steven-seagal.net
A-Team Resource : http://www.ateamresource.com
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Search module on CMPS problem ttnb Troubleshooting & Problems 1 08-30-2009 11:24 PM
Wrapping CMPS around external webpage airborneCAL "How Do I..." Questions 6 06-16-2009 11:13 AM
Wrapping CMPS around Forum Page crosschecktx "How Do I..." Questions 4 04-25-2009 10:05 AM
Problems wrapping CMPS around forum muddygrimes Troubleshooting & Problems 7 05-10-2007 10:02 AM
Problem Wrapping Forums nanabite Module & Modification Discussion & Requests 3 09-29-2006 10:54 AM


All times are GMT -4. The time now is 05:26 AM.

Forums Powered by vBulletin, Copyright ©2000-2009, Jelsoft Enterprises Ltd.
Please note that vBadvanced is in no way affiliated with Jelsoft Enterprises Ltd, nor will Jelsoft be able to provide any support for our products.