vBadvanced Forums  
Go Back   vBadvanced Forums > vBadvanced Products > vBadvanced CMPS > vBa CMPS v1.x (Archive - Closed for Posting) > Troubleshooting / "How do I..." Questions

 
 
Thread Tools Display Modes
  #1  
Old 02-25-2005, 05:19 PM
DGTLMIK DGTLMIK is offline
Member
 
Join Date: Feb 2005
Posts: 53
Default Various Bugs

vBulletin
- v3.0.6 w/ 'misc.php' patch

Hacks
- vBadvanced CMPS v1.0.1 w/ Left SideBar Hack
- vBadvanced Gallery v1.0 RC3
- v3 Arcade

Bugs
Browser Title Bar:
1. Portal Home - RESOLVED
- Currently: Site Name - Browser Name
- Preferred: Site Name - Home - Browser Name

2. Forums Home w/ Left Portal - RESOLVED
- Currently: Site Name - Left SideBar - Browser Name
- Preferred: Site Name - Forums - Browser Name

3. Gallery w/ Left Portal - RESOLVED
- Currently: Site Name - Left SideBar - Browser Name
- Preferred: Site Name - Gallery - Browser Name


Who's Online: - REDIRECTED
1. Shoutbox in Left Portal causes 'Unknown Location: forums/shoutbox.php' on every page.


Enhanced WYSIWYG Editor & Standard Editor Smilies: - UNRESOLVED
1. Do not work in both IE and FireFox, when clicked, just moves focus to top of page.


Adding Polls: - UNRESOLVED
1. When attempting to create a new Poll, I get the "you do not have permission to access this page" error ('Latest Forum Topics' Left SideBar is Active).

Last edited by DGTLMIK; 03-01-2005 at 05:45 PM.
  #2  
Old 02-28-2005, 06:26 PM
DGTLMIK DGTLMIK is offline
Member
 
Join Date: Feb 2005
Posts: 53
Default Re: Various Bugs

bump...
  #3  
Old 03-01-2005, 09:07 AM
Brian's Avatar
Brian Brian is offline
Administrator
 
Join Date: Jan 2004
Location: Georgia, USA
Posts: 34,240
Default Re: Various Bugs

For the navbar, if you'll edit your gallery/index.php file and look for this code:
PHP Code:
if (defined('VBA_PORTAL')) 
And add this right above it:
PHP Code:
$pagetitle $vba_options['gallery_title']; 
That should give you the desired result there.


Then for the forum, open your index.php file and look for:
PHP Code:
eval('$navbar = "' fetch_template('navbar') . '";'); 
Add this right below it:
PHP Code:
$pagetitle $vboptions['bbtitle']; 

For your homepage, edit your 'adv_portal' template and look for:
Code:
<title>$vboptions[hometitle] <if condition="$pagetitle">- $pagetitle</if></title>
Replace with:
Code:
<title>$vboptions[hometitle] <if condition="$pages['name'] == 'home'"> - Home</if> <if condition="$pagetitle">- $pagetitle</if></title>

For the shoutbox, you'll need to ask for help in the thread you downloaded that from as we cannot provide support for 3rd party add-ons.


As for the smilies, did you make the changes to your vbulletin_editor.js file as instructed in the readme file?


For the polls, do you have permissions for that forum set to allow the creation of polls?
  #4  
Old 03-01-2005, 10:51 AM
DGTLMIK DGTLMIK is offline
Member
 
Join Date: Feb 2005
Posts: 53
Default Re: Various Bugs

Quote:
Originally Posted by Brian
For the navbar, if you'll edit your gallery/index.php file and look for this code:
PHP Code:
if (defined('VBA_PORTAL')) 
And add this right above it:
PHP Code:
$pagetitle $vba_options['gallery_title']; 
That should give you the desired result there.
This did not work but I used the same process below for the two instances of [ eval('$navbar = "' . fetch_template('navbar') . '";'); ] and that did the trick.

Quote:
Originally Posted by Brian
Then for the forum, open your index.php file and look for:
PHP Code:
eval('$navbar = "' fetch_template('navbar') . '";'); 
Add this right below it:
PHP Code:
$pagetitle $vboptions['bbtitle']; 
Success.


Quote:
Originally Posted by Brian
For your homepage, edit your 'adv_portal' template and look for:
Code:
<title>$vboptions[hometitle] <if condition="$pagetitle">- $pagetitle</if></title>
Replace with:
Code:
<title>$vboptions[hometitle] <if condition="$pages['name'] == 'home'"> - Home</if> <if condition="$pagetitle">- $pagetitle</if></title>
Success.


Quote:
Originally Posted by Brian
For the shoutbox, you'll need to ask for help in the thread you downloaded that from as we cannot provide support for 3rd party add-ons.
10-4.

Quote:
Originally Posted by Brian
As for the smilies, did you make the changes to your vbulletin_editor.js file as instructed in the readme file?
Which Readme file are you referring to?


Quote:
Originally Posted by Brian
For the polls, do you have permissions for that forum set to allow the creation of polls?
Yes, and if I remove the 'Latest Forum Topics from the Left SideBar it works correctly. I had the same problem with the 'New Thread' and 'New Reply' functions until I performed the steps from this thread , unfortunately there are no instructions for the Polls.
  #5  
Old 03-01-2005, 12:20 PM
KW802's Avatar
KW802 KW802 is offline
Administrator
 
Join Date: Mar 2004
Location: A galaxy far, far away...
Posts: 5,030
Default Re: Various Bugs

Quote:
Originally Posted by DGTLMIK
Which Readme file are you referring to?
In the Gallery installation readme file there is a small change that needs to be done to the vbulletin_editor.js file.
  #6  
Old 03-01-2005, 12:39 PM
DGTLMIK DGTLMIK is offline
Member
 
Join Date: Feb 2005
Posts: 53
Default Re: Various Bugs

Quote:
Originally Posted by KW802
In the Gallery installation readme file there is a small change that needs to be done to the vbulletin_editor.js file.
Yes, I had made that change already, still no go.
  #7  
Old 03-01-2005, 05:43 PM
DGTLMIK DGTLMIK is offline
Member
 
Join Date: Feb 2005
Posts: 53
Default Re: Various Bugs

Original Post updated to reflect current status.
  #8  
Old 03-01-2005, 05:44 PM
ConqSoft's Avatar
ConqSoft ConqSoft is offline
Senior Member
 
Join Date: Jan 2004
Location: Raleigh, NC
Posts: 1,364
Default Re: Various Bugs

Where exactly are you clicking "Create a new poll" to get the no permission screen?
__________________
My Blog
GPS Discussion Forum

*** Please do not contact me privately for help. Thanks. ***
  #9  
Old 03-01-2005, 05:54 PM
DGTLMIK DGTLMIK is offline
Member
 
Join Date: Feb 2005
Posts: 53
Default Re: Various Bugs

Forums --> Polls Forum --> New Thread

1. Enter Title
2. Enter Message
3. Check 'Yes, post a poll with the thread'
4. Number of poll options: 2
5. Click 'Submit New Thread' Button
6. Enter Poll Question
7. Enter Option 1
8. Enter Option 2
9. Close poll: 7 days
10. Click 'Submit New Poll' Button

Repeating the same steps above after removing the 'Latest Forum Threads' SideBar and it functions correctly.
  #10  
Old 03-01-2005, 05:55 PM
ConqSoft's Avatar
ConqSoft ConqSoft is offline
Senior Member
 
Join Date: Jan 2004
Location: Raleigh, NC
Posts: 1,364
Default Re: Various Bugs

So you've integrated CMPS into your site so that it shows the left column on the New Thread and Poll Edit screens?
__________________
My Blog
GPS Discussion Forum

*** Please do not contact me privately for help. Thanks. ***
  #11  
Old 03-01-2005, 06:00 PM
DGTLMIK DGTLMIK is offline
Member
 
Join Date: Feb 2005
Posts: 53
Default Re: Various Bugs

Correct and as stated above, I had the same problem with the 'New Thread' and 'New Reply' functions until I performed the steps from this thread , unfortunately there are no instructions for the Polls.
  #12  
Old 03-03-2005, 01:05 PM
DGTLMIK DGTLMIK is offline
Member
 
Join Date: Feb 2005
Posts: 53
Default Re: Various Bugs

bump...
  #13  
Old 03-10-2005, 12:36 PM
DGTLMIK DGTLMIK is offline
Member
 
Join Date: Feb 2005
Posts: 53
Default Re: Various Bugs

Quote:
Originally Posted by DGTLMIK
vBulletin
- v3.0.7

Hacks
- vBadvanced CMPS v1.0.1 w/ Left SideBar Hack
- vBadvanced Gallery v1.0 RC3
- v3 Arcade

Bugs
Enhanced WYSIWYG Editor & Standard Editor Smilies: - UNRESOLVED
1. Do not work in both IE and FireFox, when clicked, just moves focus to top of page.


Adding Polls: - UNRESOLVED
1. When attempting to create a new Poll, I get the "you do not have permission to access this page" error ('Latest Forum Topics' Left SideBar is Active).
I finally figured out what was causing the WYSIWYG Editor to not work, it was the fix from this post used to resolve the 'newthread' and 'newreply' problem with having the Left SideBar visible. This is the same as the above "Adding Polls" unresolved issue.

Does anyone have a solution to this now that I have narrowed it down?
  #14  
Old 03-10-2005, 01:37 PM
Brian's Avatar
Brian Brian is offline
Administrator
 
Join Date: Jan 2004
Location: Georgia, USA
Posts: 34,240
Default Re: Various Bugs

Try looking in your forum/modules/latesttopics.php file for this code:
PHP Code:
unset($thread$threadbits$foruminfo$query$inforums); 
Replace with this:
PHP Code:
unset($thread$threadbits$query$inforums); 
And see if that makes a difference.
  #15  
Old 03-10-2005, 02:40 PM
DGTLMIK DGTLMIK is offline
Member
 
Join Date: Feb 2005
Posts: 53
Default Re: Various Bugs

That makes the Forum Categories disappear but the 'Breadcrumbs' and 'What's Going On?' is still visible.
  #16  
Old 04-04-2005, 08:27 PM
DGTLMIK DGTLMIK is offline
Member
 
Join Date: Feb 2005
Posts: 53
Default Re: Various Bugs

Any other suggestions?
  #17  
Old 04-26-2005, 10:43 AM
DGTLMIK DGTLMIK is offline
Member
 
Join Date: Feb 2005
Posts: 53
Default Re: Various Bugs

bump...
 


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
Reguarding Bugs ´ÀÉ`SÌLVÉR´ÀÉ` Troubleshooting / "How do I..." Questions 2 01-08-2005 12:24 AM


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