vBadvanced Forums  
Go Back   vBadvanced Forums > vBadvanced Products > vBadvanced CMPS > vBa CMPS v3.0 Support > Bugs & Issues > Bugs From 3.0.1

Reply
 
Thread Tools Display Modes
  #1  
Old 04-26-2008, 11:36 PM
Albus Albus is offline
Senior Member
 
Join Date: Apr 2005
Posts: 137
Default Two minor problems I've noticed.

Ok, first, I haven't read up on everything here (time issues) so I don't know if these have been pointed out. However, here they are.

1) There is a rogue element (possibly a <br />) in between the news post and the news archive. It is my assumption that the module spacer var is what is supposed to separate these, and in all cases does, except this one.

I haven't snooped out where it's coming from yet, and may not, but it should be fixed regardles as it messes with the visual impact.

To see this in action: http://www.starletrealm.net/ (In development)

2) When using integration to wrap pages in vbulletin, an issue arises when one of those pages redirects to an error page. For example, and search returning an empty set. The error page is also displaying the navbar, so there's two.

Of course, the temp workaround is to edit the error shell and remove that, but there should be a more permanent solution.
__________________
2 owned vB licenses and proud of it.
Reply With Quote
  #2  
Old 04-27-2008, 12:07 AM
Albus Albus is offline
Senior Member
 
Join Date: Apr 2005
Posts: 137
Default Re: Two minor problems I've noticed.

Ok, in regards to the space issue, I looked at the resultant HTML and found this in between the news and archive.

<div style="padding-bottom: 15px"></div>

After looking at the module php, I can only assume that if pagination is not enabled, or needed, an empty wrapper is still being writtin to the page. That should point you in the right direction there.
__________________
2 owned vB licenses and proud of it.
Reply With Quote
  #3  
Old 04-28-2008, 03:16 PM
Brian's Avatar
Brian Brian is offline
Administrator
 
Join Date: Jan 2004
Location: Georgia, USA
Posts: 34,240
Default Re: Two minor problems I've noticed.

Thank you for pointing these things out.

1). It looks like this is due to a small problem where it's checking just the limit for news posts instead of the total for the news and archive. If you will look in your forum/modules/news.php file for this line:
PHP Code:
if ($mod_options['portal_news_maxposts'] AND ($newsrows >= $mod_options['portal_news_maxposts'] OR $vbulletin->GPC[$newspagevar])) 
And replace with this:
PHP Code:
if (($mod_options['portal_news_maxposts'] AND ($newsrows >= ($mod_options['portal_news_maxposts'] + $mod_options['portal_news_enablearchive'])) OR $vbulletin->GPC[$newspagevar])) 
Then that *should* take care of the issue.


2). Integration isn't *supposed* to be applied to error pages like that, but it looks like the code to prevent the integration from happening was inadvertantly removed in 3.0.1. If you will go to Admin CP => Plugins & Products => Plugin Manager, edit the 'vBa CMPS - Error Replacements' plugin and add this line at the very bottom (after the last } bracket), then that should take care of that issue as well.
PHP Code:
define('SKIP_OUTPUT'true); 
Reply With Quote
  #4  
Old 04-30-2008, 12:12 PM
eJM's Avatar
eJM eJM is offline
Senior Citizen
 
Join Date: Jul 2006
Location: teh Ether
Posts: 321
Default Re: Two minor problems I've noticed.

Did you apply these changes to the package, Brian, or do I have to manually enter them when I upgrade?

Thanks,

Jim
__________________
If my post was helpful to you, or made you or ,
please take the time to register at my forum and ask
a question you've always wanted to know about floors.
The Floor Pro Community
Reply With Quote
  #5  
Old 04-30-2008, 12:16 PM
Brian's Avatar
Brian Brian is offline
Administrator
 
Join Date: Jan 2004
Location: Georgia, USA
Posts: 34,240
Default Re: Two minor problems I've noticed.

Both of these changes have been applied to the download package here.
Reply With Quote
  #6  
Old 05-01-2008, 05:04 PM
xed xed is offline
Junior Member
 
Join Date: Jan 2007
Posts: 4
Default Re: Two minor problems I've noticed.

Are you sure the fix for the extra space between the News and News Archive has been applied to the download package? I'm still seeing the space on my site.
Reply With Quote
  #7  
Old 05-02-2008, 12:23 PM
Brian's Avatar
Brian Brian is offline
Administrator
 
Join Date: Jan 2004
Location: Georgia, USA
Posts: 34,240
Default Re: Two minor problems I've noticed.

It should have been, but upon further review of the file there may have still been a small error. Try downloading the files from here again, replace your modules/news.php file with the one from the download package, and see if that helps.
Reply With Quote
  #8  
Old 05-05-2008, 11:28 PM
xed xed is offline
Junior Member
 
Join Date: Jan 2007
Posts: 4
Default Re: Two minor problems I've noticed.

Hi Brian, nope still the same.
Reply With Quote
  #9  
Old 05-06-2008, 02:10 PM
Brian's Avatar
Brian Brian is offline
Administrator
 
Join Date: Jan 2004
Location: Georgia, USA
Posts: 34,240
Default Re: Two minor problems I've noticed.

I'm not sure why you would still be having the problem, 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.
Reply With Quote
  #10  
Old 07-14-2009, 04:22 AM
sfnet sfnet is offline
Senior Member
 
Join Date: Jan 2008
Posts: 156
Default

Just noticed the second issue as well...an extra set of div tags that shouldn't be there seem to exist, creating extra space between the news module and the module below it. The extra code is:

Quote:
<div style="padding-bottom: 18px"></div>
18px is what I set my horizontal spacing between modules. I upgraded to the latest version of vbadvanced but its still there.

I checked for your PHP code in the plugin manager under the error replacements plugin and I saw its already there.
PHP Code:
define('SKIP_OUTPUT'true); 
Can you tell me what you did to fix this problem?
Reply With Quote
  #11  
Old 07-15-2009, 12:26 PM
Brian's Avatar
Brian Brian is offline
Administrator
 
Join Date: Jan 2004
Location: Georgia, USA
Posts: 34,240
Default

Which site is this that you're having the issue on?
xed never submitted a ticket, so I'm not sure what the fix was in their case.
__________________
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
  #12  
Old 07-15-2009, 03:19 PM
sfnet sfnet is offline
Senior Member
 
Join Date: Jan 2008
Posts: 156
Default

Quote:
Originally Posted by Brian View Post
Which site is this that you're having the issue on?
xed never submitted a ticket, so I'm not sure what the fix was in their case.
I will PM you the site I am having trouble.
Reply With Quote
  #13  
Old 07-16-2009, 11:57 AM
Brian's Avatar
Brian Brian is offline
Administrator
 
Join Date: Jan 2004
Location: Georgia, USA
Posts: 34,240
Default

I'm not seeing any obvious causes there, but if you would like to submit a support ticket 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
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
Fort Minor fan? Check out fort minor world! jnuts Show off your vBadvanced! 1 04-30-2008 09:51 PM
I just noticed something irritating. shortbus Feedback & Suggestions 1 11-08-2006 07:46 PM
Minor changes for admincp StewardManscat Add-On Modules & Modifications 0 03-22-2005 01:10 PM
Minor Problem joeychgo Troubleshooting / "How do I..." Questions 16 11-21-2004 04:55 PM
Minor bug - welcome block ogetbilo Bugs & Other Issues 7 05-18-2004 08:03 AM


All times are GMT -4. The time now is 02:10 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.