Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > Premium Archives > vBindex
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Blasted copyright. Details »»
Blasted copyright.
Version: , by Titus Titus is offline
Developer Last Online: Feb 2008 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 04-27-2005 Last Update: Never Installs: 0
 
No support by the author.

I'm working on a skin for my board, and I've got one really irksome problem. I can't find the dang copyright for vbIndex. It appears on the pages as it should, but it appears below a border I have placed around all my content. This means it is seperated by about ten pixels of space from the Jelsoft copyright. I want the vbIndex copyright inline with the Jelsoft copyright, so I have three nice, neat lines in one place, not two lines, thick border, out-of-place copyright.

I've searched the phrases, searched the templates, and scanned the index.php file, but I can't find where the copyright is generated! How do I move it?

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #2  
Old 04-27-2005, 05:43 AM
mholtum's Avatar
mholtum mholtum is offline
 
Join Date: May 2004
Location: Arizona
Posts: 697
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

footer?
Reply With Quote
  #3  
Old 04-29-2005, 02:20 AM
Titus Titus is offline
 
Join Date: Apr 2004
Posts: 36
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You mean the template VBINDEX_footer? I've already completly re-coded it. The vbIndex copyright isn't template controlled. I've attached an image that displays the problem. My footer ends with that black border, there is no vbindex copyright code in the footer template.

What I want to do is move the copyright up with the Jelsoft copyright so everything is uniform, neat and clean, tidey and tight.

Updated image, same problem. I added a footer image to hold the copyright for vB, and now I'd like to put the vbIndex copyright underneath the footer links (contact, admin, mod, etc).
Attached Files
File Type: (21.3 KB, 74 views)
File Type: (21.3 KB, 78 views)
Reply With Quote
  #4  
Old 04-29-2005, 03:56 AM
Adrian Schneider's Avatar
Adrian Schneider Adrian Schneider is offline
 
Join Date: Jul 2004
Posts: 2,528
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Try viewing source, that might give you a better idea. Or search in phrases / templates for those words.
Reply With Quote
  #5  
Old 04-29-2005, 11:21 PM
Titus Titus is offline
 
Join Date: Apr 2004
Posts: 36
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Last lines in my vbindex_footer template:
HTML Code:
<table width="100%" cellspacing="0" cellpadding="0">
	<tr>
		<td align="right"><img style="position:relative;top:15px;left:15px;" src="http://therebelfaction.com/forums/images/portal/misc/footer.gif" alt="$vbphrase[powered_by_vbulletin]"></td>
	</tr>
</table>

		</td>
	</tr>
</table>
When viewing the source, this is the last few lines.
HTML Code:
<table width="100%" cellspacing="0" cellpadding="0">
	<tr>
		<td align="right"><img style="position:relative;top:15px;left:15px;" src="http://therebelfaction.com/forums/images/portal/misc/footer.gif" alt="TRF is powered by vBulletin, which is &copy;2000 - 2005, Jelsoft Enterprises Ltd.<br>All text herein is &copy;2002 - 2005 by TRF and its members. Star Wars is &copy; Lucasarts Ltd."></td>
	</tr>
</table>

		</td>

	</tr>
</table>
<div class="smallfont" style="text-align: center">vBindex Copyright &copy; MMII - MMIV Winter Systems.</div>
</body>
</html>
Last few lines of my VBINDEX template:
HTML Code:
		<!-- end main col -->
	</tr>
</table>

$home[footer]
</body>
</html>
A search in the templates for 'MMIV Winter Systems' yeilds 0 results. A search in the phrase manager for 'MMIV Winter Systems' yeilds 0 results. Yesterday it yielded 1 result, but I replaced the text with a line break only in an attempt to see if that was what was being called. It wasn't, because I still have the problem.
Reply With Quote
  #6  
Old 04-29-2005, 11:34 PM
Zachery's Avatar
Zachery Zachery is offline
 
Join Date: Jul 2002
Location: Ontario, Canada
Posts: 11,440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Titus
Last lines in my vbindex_footer template:
HTML Code:
<table width="100%" cellspacing="0" cellpadding="0">
	<tr>
		<td align="right"><img style="position:relative;top:15px;left:15px;" src="http://therebelfaction.com/forums/images/portal/misc/footer.gif" alt="$vbphrase[powered_by_vbulletin]"></td>
	</tr>
</table>

		</td>
	</tr>
</table>
When viewing the source, this is the last few lines.
HTML Code:
<table width="100%" cellspacing="0" cellpadding="0">
	<tr>
		<td align="right"><img style="position:relative;top:15px;left:15px;" src="http://therebelfaction.com/forums/images/portal/misc/footer.gif" alt="TRF is powered by vBulletin, which is &copy;2000 - 2005, Jelsoft Enterprises Ltd.<br>All text herein is &copy;2002 - 2005 by TRF and its members. Star Wars is &copy; Lucasarts Ltd."></td>
	</tr>
</table>

		</td>

	</tr>
</table>
<div class="smallfont" style="text-align: center">vBindex Copyright &copy; MMII - MMIV Winter Systems.</div>
</body>
</html>
Last few lines of my VBINDEX template:
HTML Code:
		<!-- end main col -->
	</tr>
</table>

$home[footer]
</body>
</html>
A search in the templates for 'MMIV Winter Systems' yeilds 0 results. A search in the phrase manager for 'MMIV Winter Systems' yeilds 0 results. Yesterday it yielded 1 result, but I replaced the text with a line break only in an attempt to see if that was what was being called. It wasn't, because I still have the problem.
Chances are its in the file
Reply With Quote
  #7  
Old 04-30-2005, 02:23 AM
Titus Titus is offline
 
Join Date: Apr 2004
Posts: 36
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That's what I'm thinking. Except I'm not good enough at hacking php to be able to tell what code could be an obfuscated bit of text generation. I've scanned over the file a couple times already, and tried removing stuff, but nothing has worked so far.
Reply With Quote
  #8  
Old 04-30-2005, 03:10 AM
Adrian Schneider's Avatar
Adrian Schneider Adrian Schneider is offline
 
Join Date: Jul 2004
Posts: 2,528
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Try doing a search for "$home[footer]" or "footer" in the PHP file.
Reply With Quote
  #9  
Old 05-03-2005, 04:43 PM
Chris M's Avatar
Chris M Chris M is offline
 
Join Date: Dec 2001
Location: Northampton, England
Posts: 6,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The vBindex copyright is to be found in the [high]vbi_copyright[/high] phrase

Satan
Reply With Quote
  #10  
Old 05-05-2005, 02:14 AM
Titus Titus is offline
 
Join Date: Apr 2004
Posts: 36
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Search Results
vBindex Phrases Containing 'vbi_copyright'
vbi_copyright Custom Phrase &nbsp;
I've already found that, and removed the text. No change, the copyright is still being displayed.
Reply With Quote
Reply


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


All times are GMT. The time now is 05:52 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04484 seconds
  • Memory Usage 2,329KB
  • Queries Executed 24 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (6)bbcode_html
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (2)postbit_attachment
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • postbit_attachment
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete