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

Reply
 
Thread Tools Display Modes
  #1  
Old 04-05-2013, 05:22 AM
chikuru chikuru is offline
 
Join Date: Nov 2011
Posts: 228
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default {vb:raw session.sessionurl} not parsing

I have modifed the login area and created a custom popup login box..
The login is working, but when I checked the URL, it goes to:

Code:
http://www.website.com/login.php?{vb:raw%20session.sessionurl_q}do=login
Reply With Quote
  #2  
Old 04-05-2013, 07:53 AM
kh99 kh99 is offline
 
Join Date: Aug 2009
Location: Maine
Posts: 13,185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Where did you put that? The curly brace syntax only works in a template.
Reply With Quote
  #3  
Old 04-05-2013, 01:48 PM
chikuru chikuru is offline
 
Join Date: Nov 2011
Posts: 228
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

in header template..
Reply With Quote
  #4  
Old 04-05-2013, 02:32 PM
kh99 kh99 is offline
 
Join Date: Aug 2009
Location: Maine
Posts: 13,185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmm...do you know where in the template the code for that link is? Can you post it?
Reply With Quote
  #5  
Old 04-05-2013, 06:13 PM
chikuru chikuru is offline
 
Join Date: Nov 2011
Posts: 228
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Code:
<form action="login.php?{vb:raw session.sessionurl}do=login" method="post">
	<div class="input-container">
		<div id="username-container">
			<input name="vb_login_username" type="text" id="username" placeholder="Username" required/>
		</div>
		<div id="password-container">
			<input name="vb_login_password" type="password" id="password" placeholder="Password" required/>
		</div>
	</div>
	
	<div class="options">
		<div class="left">
			<span class="remember-me">Remember my password</span>
			<div class="checkbox">
				<input type="checkbox" id="remember-me" name="cookieuser" value="1" />
				<label for="remember-me"></label>
			</div>
		</div>
		<div class="right"><button class="btn-s1 right button grey green-hover button-7">Sign In</button></div>
		<div class="clear"></div>
	</div>
					<input type="hidden" name="s" value="{vb:raw session.sessionhash}" />
					<input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" />
					<input type="hidden" name="do" value="login" />
					<input type="hidden" name="vb_login_md5password" />
					<input type="hidden" name="vb_login_md5password_utf" />
</form>
Reply With Quote
  #6  
Old 04-06-2013, 11:22 AM
kh99 kh99 is offline
 
Join Date: Aug 2009
Location: Maine
Posts: 13,185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmm...I don't see how session.sessionurl_q comes from that (the code you posted doesn't have the _q). It seems like for that to happen you would have to have {vb:raw session.sessionurl_q} somewhere other than in a template (like in php code or in a phrase). Did you change anything other than the header template?
Reply With Quote
  #7  
Old 04-06-2013, 12:26 PM
chikuru chikuru is offline
 
Join Date: Nov 2011
Posts: 228
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

this is the complete codes in the header template:

Code:
<div class="above_body"> <!-- closing tag is in template navbar -->
	<div id="header" class="floatcontainer doc_header">
		<!-- start CUSTOM HEADER -->
		<ul id="menu-top" class="topNav multiMenu">
			<li id="menu-item" class="topmenuitem"><a href="#">HOME</a></li>
			<li id="menu-item" class="topmenuitem"><a href="#">ADVERTISE HERE</a></li>
			<li id="menu-item" class="topmenuitem"><a href="#">CONTACT US</a></li>
			<vb:if condition="$show['member']">
			<li id="menu-item" class="topmenuitem item-right">
			<div class="dropdown">
			<a class="account">Hello User</a>
					<div class="submenu">
					<ul class="root">
					<li ><a href="#Dashboard" >Profile</a></li>
					<li ><a href="#Profile" >Notification</a></li>
					<li ><a href="#settings">Settings</a></li>
					<li ><a href="#feedback">Log Out</a></li>
					</ul>
				</div>
			</li>
			<vb:else />
			<li id="menu-item" class="topmenuitem item-right"><a id="sign-in">LOGIN</a></li>
<!-- Login Box START -->
<vb:literal><script>
$(function(){
		function showModal() {
			$('#modal-overlay').fadeIn('.2s');
			$('.modal').fadeIn(10).addClass('modal-in');
		}

		function hideModal() {
			$("#modal-overlay").fadeOut(300, function () {
				$('.modal').fadeOut();
				$('.modal').removeClass('modal-in');
				$("#modal-overlay").remove();
			});
		}
	// --- Modal > Login --- //
	$("#sign-in").click(function () {
		$('footer').after('<div id="modal-overlay"> \
<div class="modal" id="login"> \
<span class="close"></span> \
<header> \
<h3>Member Login</h3> \
</header> \
<div class="content-container"> \
<h4>If you are an existing user please login below, if not <a href="#">create an account</a> now.</h4> \
<form action="login.php?{vb:raw session.sessionurl}do=login" method="post" onsubmit="md5hash(vb_login_password, vb_login_md5password, vb_login_md5password_utf, {vb:raw show.nopasswordempty})"> \
<div class="input-container"> \
<div id="username-container"> \
<input name="vb_login_username" type="text" id="username" placeholder="Username" required/> \
</div> \
<div id="password-container"> \
<input name="vb_login_password" type="password" id="password" placeholder="Password" required/> \
</div> \
</div> \
<div class="options"> \
<div class="left"> \
<span class="remember-me">Remember my password</span> \
<div class="checkbox"> \
<input type="checkbox" id="remember-me" name="cookieuser" value="1" /> \
<label for="remember-me"></label> \
</div> \
</div> \
<div class="right"><button class="btn-s1 right button grey green-hover button-7">Sign In</button></div> \
<div class="clear"></div> \
</div> \
				<input type="hidden" name="s" value="{vb:raw session.sessionhash}" /> \
				<input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" /> \
				<input type="hidden" name="do" value="login" /> \
				<input type="hidden" name="vb_login_md5password" /> \
				<input type="hidden" name="vb_login_md5password_utf" /> \
</form> \
</div> \
</div> \
</div>');
		showModal($(this));
		$('.modal header, .modal .content-container').click(function () {});
	});
	$('body').on("click", "#modal-overlay, .modal span.close", function (event) {
		if (event.target == this) hideModal($(this));
	});
})
</script></vb:literal>
<!-- Login Box END -->
			</vb:if>
			<li id="menu-item" class="topmenuitem item-right"><a href="#">SEARCH</a></li>
		</ul>	

	<vb:if condition="$stylevar['titleimage']"><div><a name="top" href="{vb:link forumhome}" class="logo-image"><img src="{vb:stylevar titleimage}" alt="{vb:rawphrase x_powered_by_vbulletin, {vb:raw vboptions.bbtitle}}" /></a></div></vb:if>

	
	<div class="ad_global_header">
		{vb:raw ad_location.global_header1}
		{vb:raw ad_location.global_header2}
	</div>
	<hr />
</div>
Reply With Quote
  #8  
Old 04-09-2013, 02:26 PM
chikuru chikuru is offline
 
Join Date: Nov 2011
Posts: 228
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

any thoughts?
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 01:51 AM.


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.04131 seconds
  • Memory Usage 2,238KB
  • Queries Executed 11 (?)
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
  • (3)bbcode_code
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (8)post_thanks_box
  • (8)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (8)post_thanks_postbit_info
  • (8)postbit
  • (8)postbit_onlinestatus
  • (8)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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete