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

Reply
 
Thread Tools Display Modes
  #1  
Old 08-12-2007, 10:44 PM
Frank H. Shaw Frank H. Shaw is offline
 
Join Date: Aug 2007
Posts: 90
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default I need to create a enw php script amd do the following!

I am building a server side php file and at the top of the file after i have stuffed the $_POST to $varables what ever was passed by a front end form in HTML and PHP. What i need to understand is what would I put in my PHP script to prcoess the user is logged in to the forum aready or not and then after that has been detremed and if not i need to know where i should look for the actual code to ask the user to login in before jumping to the actual forum that the user has selected by selecting one of my quick links on my main page which is not contained in the /forums/ - while on the question is there requirment to have my php script that does the checking weather login or not have to sit in the /forums/ or can i have it like sit or reside in my web root unstead?

THANKS

Frank H. Shaw
Reply With Quote
  #2  
Old 08-13-2007, 12:18 AM
Eikinskjaldi's Avatar
Eikinskjaldi Eikinskjaldi is offline
 
Join Date: Feb 2006
Location: Hell, never looked better
Posts: 572
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You might like to use some punctuation in your posts. I am rather fond of the comma and period myself.


Most of what you want (assuming I understood the question) lives in $vbulletin->userinfo


e.g. you can do
PHP Code:
if (!$vbulletin->userinfo['userid'])
   
print_no_permission(); 
to see if a user is logged in.
Reply With Quote
  #3  
Old 08-13-2007, 02:01 AM
Frank H. Shaw Frank H. Shaw is offline
 
Join Date: Aug 2007
Posts: 90
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The script below will this work just as this is and can it reside in my web root and not in my /forums/ sub dir I wnat it to reside one level above the /forums?

<?php
$selected = $_POST['selected'];
if (!$vbulletin->userinfo['userid'])
print_no_permission();

switch ($selected) {
case "John T Heard Lodge":
$vbulletin->url = $vbulletin->options['bburl']."/forumdisplay.php?f=30";
eval(print_standard_redirect('redirecting to forum', false, true));
break;

case "The Tyrian-Acacia Lodge":
$vbulletin->url = $vbulletin->options['bburl']."/forumdisplay.php?f=31";
eval(print_standard_redirect('redirecting to forum', false, true));

break;

default:
echo "Invalid page";

break;

}
?>

THANKS

Frank H. Shaw
Reply With Quote
  #4  
Old 08-13-2007, 02:09 AM
Eikinskjaldi's Avatar
Eikinskjaldi Eikinskjaldi is offline
 
Join Date: Feb 2006
Location: Hell, never looked better
Posts: 572
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

To access the vbulletin stuff you will need to import global.php

require_once('forum/global.php');

then that should work, AFAIK.
Reply With Quote
  #5  
Old 08-13-2007, 02:25 AM
Frank H. Shaw Frank H. Shaw is offline
 
Join Date: Aug 2007
Posts: 90
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Would this be correct now ?

<?php
$selected = $_POST['selected'];
require_once('forum/global.php');

if (!$vbulletin->userinfo['userid'])
print_no_permission();

switch ($selected) {
case "John T Heard Lodge":
$vbulletin->url = $vbulletin->options['bburl']."/forumdisplay.php?f=30";
eval(print_standard_redirect('redirecting to forum', false, true));
break;

case "The Tyrian-Acacia Lodge":
$vbulletin->url = $vbulletin->options['bburl']."/forumdisplay.php?f=31";
eval(print_standard_redirect('redirecting to forum', false, true));

break;

default:
echo "Invalid page";

break;

}
?>

THANKS

Frank H. Shaw
Reply With Quote
  #6  
Old 08-13-2007, 04:19 AM
Eikinskjaldi's Avatar
Eikinskjaldi Eikinskjaldi is offline
 
Join Date: Feb 2006
Location: Hell, never looked better
Posts: 572
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

looks good. Try it and see.
Reply With Quote
  #7  
Old 08-13-2007, 06:07 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That won't work, you must switch to the forum directory using chdir() for global.php to include properly.
PHP Code:
$curdir getcwd();
chdir('./forums');
require_once(
'./global.php');
chdir($curdir);

if (!
$vbulletin->userinfo['userid'])
{
    
print_no_permission();
}

switch (
$_POST['selected'])
{
    case 
"John T Heard Lodge":
        
$vbulletin->url $vbulletin->options['bburl'] . '/forumdisplay.php?f=30';
        eval(
print_standard_redirect('redirecting to forum'falsetrue));
        break;
    case 
"The Tyrian-Acacia Lodge":
        
$vbulletin->url $vbulletin->options['bburl'] . '/forumdisplay.php?f=31';
        eval(
print_standard_redirect('redirecting to forum'falsetrue));
        break;
    default:
        echo 
"Invalid page";
        break;

Reply With Quote
  #8  
Old 08-13-2007, 07:50 AM
Frank H. Shaw Frank H. Shaw is offline
 
Join Date: Aug 2007
Posts: 90
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

by the thanks for the fix you sighted on the changing dir that was very good catch on your part.

Now looking at just this

if (!$vbulletin->userinfo['userid'])
{
print_no_permission();
}

Here it now with the above lines does and checks to see if the user is loged in yet and if not he gets a error message telling him he is not - so if he is not loged in I want him to be required to login at that point. So not only is he going to have to enter the password to get into the private fourm in this case a sub-fourm - i want the login screen to pop up and have the user be required to login before going any futher.

So how would i modfy the below php to do that ?

if (!$vbulletin->userinfo['userid'])
{
print_no_permission();
}

THANKS

Frank H. Shaw
Reply With Quote
  #9  
Old 08-14-2007, 11:00 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That error does show username/password boxes, is that not what you're after?
Reply With Quote
  #10  
Old 08-14-2007, 12:38 PM
Frank H. Shaw Frank H. Shaw is offline
 
Join Date: Aug 2007
Posts: 90
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Here is the problem i am haveing on the frontend the HTML stuff maybe you have a idea of what the two problems are ?

have two problems my PHP inside the HTML does not seem to be grabing the right value from the optgroup because my echo is echo the actual text value and not what was selected so lets solve that first?

<select>
<optgroup label="Blue Lodges">
<option value="John T. Heard Lodge">John T. Heard Lodge</option>
<option value="The Tyrian-Acacia Lodge">The Tyrian-Acacia Lodge</option>
</optgroup>
</select>

<?php
$selected = value;
echo $selected;
?>


Now the other problem is the $selected need to be put in the actual text box in the form and it needs to be also the value selected in the optgroup so how do I stuff this in the text box ?


My form is the following :

<form action="lodgeselected.php" method="post">
<element attribute="nodeValue" />
<label for="elementID"></label>
<input id="elementID" />
<input type="hidden" name="Blue-lodge" value="<?php echo $selected ?>" />
<label for="textfield">Forum selected</label>
<input type="submit" value="Go" />
</form>

Other wise if these two things are soloved I should be ok THANK!

If you want to see the actual problem please click on this link below

http://burningtaper.org/index-2.php

THANKS

Frank H. Shaw
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:29 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.04916 seconds
  • Memory Usage 2,264KB
  • 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_php
  • (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
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (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
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete