Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #11  
Old 04-26-2008, 03:43 AM
nirvana43's Avatar
nirvana43 nirvana43 is offline
 
Join Date: Oct 2007
Location: Pune, India
Posts: 361
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lynne View Post
It's not in that template. It's in the template prior to that one being called. Probably the FORUMDISPLAY template. That's where I would look anyway. In fact, I just looked at mine and I have a </thead> prior to the $forumbits being called. You need to start comparing your templates to the default templates to see if you are missing tags that should be there.

As for other errors on pages, read what it says in the validator. It usually tells you what is wrong. Good luck.
wow man!! first 1 is fixed.. but i really cant find out where that </div> is missing.
i checked postbit template, postbit_legacy template but cant find out...
i think there is something wrong in BBcode definition... can u tell me where can i edit html syntax of < center> </ center> bbcode??
http://validator.w3.org/check?uri=ht...Inline&group=0
Reply With Quote
  #12  
Old 04-26-2008, 03:47 AM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by nirvana43 View Post
wow man!! first 1 is fixed.. but i really cant find out where that </div> is missing.
It doesn't say you are missing a div, it says:
Quote:
Line 646, Column 87: document type does not allow element "div" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag.

The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.
One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").
Like I said, read what it says. It puts that text there to help you, not just to fill in the page.
Reply With Quote
  #13  
Old 04-26-2008, 03:48 AM
nirvana43's Avatar
nirvana43 nirvana43 is offline
 
Join Date: Oct 2007
Location: Pune, India
Posts: 361
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lynne View Post
It doesn't say you are missing a div, it says:


Like I said, read what it says. It puts that text there to help you, not just to fill in the page.
yes but in which tmplate??
there is no template name there.. like template xyz begins etc.
Reply With Quote
  #14  
Old 04-26-2008, 03:52 AM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Paste the source code in text editor and turn on line numbers. That's what I've been doing when helping you.
Reply With Quote
  #15  
Old 04-26-2008, 03:59 AM
nirvana43's Avatar
nirvana43 nirvana43 is offline
 
Join Date: Oct 2007
Location: Pune, India
Posts: 361
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lynne View Post
Paste the source code in text editor and turn on line numbers. That's what I've been doing when helping you.
but its giving me wrong line numbers na sir.. thats why i'm asking you... it says line 646 contains error and line 646 i'm getting here is :
Code:
<td class="vbmenu_control" id="linkbacktools" nowrap="nowrap">
	<a href="http://www.projectsplanet.com/robotics-projects/574-wireless-unmanned-ground-vehicle-pick-place-robot-college-project.html?nojs=1#links">LinkBack (9)</a>
	<script type="text/javascript"> vbmenu_register("linkbacktools"); </script>

</td>
there is no <div> tag...
but i'm think here is problem :
Code:
<!-- message -->
		<div id="post_message_594"><b><font color="Purple"><font size="5"><div align="center">Wireless Unmanned Ground Vehicle<br />

(Pick And Place Robot)</div></font></font></b><br />
<br />
but there is no template start name so cant find out and also that code exist at line 873 thats what showing it to me here
so please kindly help man
Reply With Quote
  #16  
Old 04-26-2008, 04:14 AM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

When you don't see the template name *right* there, you go up the lines until you do see it. Or, like in the code you posted above, do a search in your templates for "<!-- message -->" or any comment around in the source code. Sometimes you need to get creative in finding the template.

As for the lines, I'm not getting the exact lines either, but don't forget you need to view the site as a guest, which is what the validator is doing. You can't view it as an admin because the code will be different.
Reply With Quote
  #17  
Old 04-26-2008, 04:23 AM
nirvana43's Avatar
nirvana43 nirvana43 is offline
 
Join Date: Oct 2007
Location: Pune, India
Posts: 361
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lynne View Post
When you don't see the template name *right* there, you go up the lines until you do see it. Or, like in the code you posted above, do a search in your templates for "<!-- message -->" or any comment around in the source code. Sometimes you need to get creative in finding the template.

As for the lines, I'm not getting the exact lines either, but don't forget you need to view the site as a guest, which is what the validator is doing. You can't view it as an admin because the code will be different.
still not able to find out the template

--------------- Added [DATE]1209188571[/DATE] at [TIME]1209188571[/TIME] ---------------

Quote:
Originally Posted by Lynne View Post
When you don't see the template name *right* there, you go up the lines until you do see it. Or, like in the code you posted above, do a search in your templates for "<!-- message -->" or any comment around in the source code. Sometimes you need to get creative in finding the template.

As for the lines, I'm not getting the exact lines either, but don't forget you need to view the site as a guest, which is what the validator is doing. You can't view it as an admin because the code will be different.
please help bro... you are my only hope to get rid of that 1 error
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 03:46 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04418 seconds
  • Memory Usage 2,238KB
  • Queries Executed 13 (?)
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
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (2)bbcode_code
  • (7)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (7)post_thanks_box
  • (7)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (7)post_thanks_postbit_info
  • (7)postbit
  • (7)postbit_onlinestatus
  • (7)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_postinfo_query
  • fetch_postinfo
  • 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
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete