vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Deluxe vB User login and access control on non vB pages (https://vborg.vbsupport.ru/showthread.php?t=108026)

CSGCarl 05-01-2007 05:04 PM

It's me again lol

Thanks for that I did that and worked fine til I tried it on a menu...

When I tried it on menu I got these errors;
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /home/---/public_html/homepage.php on line 928

Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /home/---/public_html/homepage.php on line 928

This is the code which I tried:

PHP Code:

<?php
If ($vbulletin->userinfo['userid']!=0)

echo \?<
img src=\\?<td style=\?background-image:url('http://www.battlestationextreme.com/images/homepage09.jpg'); height:40px\?>

                                            <table width=\?181\? border=\?0\? cellspacing=\?0\? cellpadding=\?0\? id=\?table16\?>



                                                    <tr>



                                                        <td width=\?15\?><img src=\?http://www.battlestationextreme.com/images/spacer.gif\? alt=\?\? width=\?15\? height=\?40\?></td>



                                                        <td width=\?166\? class=\?text2\?>

                                                        My BSE</td>



                                                    </tr>



                                                </table></td>



                                        </tr>



                                        <tr>



                                            <td style=\?background-image:url('http://www.battlestationextreme.com/images/homepage10.jpg'); height:29px\?>

                                            <table width=\?100%\? border=\?0\? cellspacing=\?0\? cellpadding=\?0\? id=\?table17\?>



                                                    <tr>



                                                        <td width=\?8%\?><img src=\?http://www.battlestationextreme.com/images/spacer.gif\? alt=\?\? width=\?15\? height=\?29\?></td>



                                                        <td width=\?92%\?>

                                                        <a class=\?link1\? href=\?http://www.battlestationextreme.com/forums/usercp.php\?>

                                                        My Account</a></td>



                                                    </tr>



                                                </table></td>



                                        </tr>



                                        <tr>



                                            <td style=\?background-image:url('http://www.battlestationextreme.com/images/homepage10.jpg'); height:29px\?>

                                            <table width=\?100%\? border=\?0\? cellspacing=\?0\? cellpadding=\?0\? id=\?table18\?>



                                                    <tr>



                                                        <td width=\?8%\?><img src=\?http://www.battlestationextreme.com/images/spacer.gif\? alt=\?\? width=\?15\? height=\?29\?></td>



                                                        <td width=\?92%\?>

                                                        <a class=\?link1\? href=\?http://www.battlestationextreme.com/forums/private.php\?>

                                                        My Messages</a></td>



                                                    </tr>



                                                </table></td>



                                        </tr>



                                        <tr>



                                            <td style=\?background-image:url('http://www.battlestationextreme.com/images/homepage10.jpg'); height:29px\?>

                                            <table width=\?100%\? border=\?0\? cellspacing=\?0\? cellpadding=\?0\? id=\?table19\?>



                                                    <tr>



                                                        <td width=\?8%\?><img src=\?http://www.battlestationextreme.com/images/spacer.gif\? alt=\?\? width=\?15\? height=\?29\?></td>



                                                        <td width=\?92%\?>

                                                        <a class=\?link1\? href=\?http://help.battlestationextreme.com/ticket/index.php?a=add\?>

                                                        New Ticket</a></td>



                                                    </tr>



                                                </table></td>



                                        </tr>



                                        <tr>



                                            <td style=\?background-image:url('http://www.battlestationextreme.com/images/homepage10.jpg'); height:29px\?>

                                            <table width=\?100%\? border=\?0\? cellspacing=\?0\? cellpadding=\?0\? id=\?table20\?>



                                                    <tr>



                                                        <td width=\?8%\?><img src=\?http://www.battlestationextreme.com/images/spacer.gif\? alt=\?\? width=\?15\? height=\?29\?></td>



                                                        <td width=\?92%\?>

                                                        <a class=\?link1\? href=\?http://help.battlestationextreme.com/ticket/ticket.php?track\?>

                                                        View Tickets</a></td>



                                                    </tr>



                                                </table></td>



                                        </tr>



                                        <tr>



                                            <td><img src=\?http://www.battlestationextreme.com/images/homepage11.jpg\? alt=\?\? width=\?181\? height=\?8\?></td>\?;
} else {
echo \?Your not logged in so we display this\?;
}
?>

I'm not much good at this :( but once you tell me the problem I should be sorted:erm:

Carl

Billspaintball 05-01-2007 10:46 PM

Hi Carl.

Looks like you have missed using \ in a few places.

For example near the top you have

PHP Code:


echo &#8221;<img src=”<td style=”background-image:url('http://www.battlestationextreme.com/images/homepage09.jpg'); height:40px”> 

but it should be
PHP Code:

 
echo &#8221;<img src=\”<td style=\”background-image:url(\"http://www.battlestationextreme.com/images/homepage09.jpg\"); height:40px\”> 

Then you have

PHP Code:

 
<table width=&#8221;181” border=”0” cellspacing=”0” cellpadding=”0” id=”table16”> 

but it should be
PHP Code:

 
<table width=\&#8221;181\” border=\”0\” cellspacing=\”0\” cellpadding=\”0\” id=\”table16\”> 

and so on for the rest...

If you dont escape every " that is in your HTML inside the echo statement with \ it will cause a premature end to the echo statement and wont work.

CSGCarl 05-06-2007 12:31 PM

Ok well I have looked and replaced all the " with \" but I still seem to get errors for example:

Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /home/----/public_html/homepage.php on line 1039

Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /home/----/public_html/homepage.php on line 1039

PHP Code:

<?php If ($vbulletin->userinfo["userid"]!=0)
    {    
    echo \&
#8221;<td style=\”background-image:url(\”http://www.battlestationextreme.com/images/homepage09.jpg\”); height:40px\”>

                                            
<table width=\&#8221;181\” border=\”0\” cellspacing=\”0\” cellpadding=\”0\” id=\”table28\”>



                                                    
<tr>



                                                        <
td width=\&#8221;15\”><img src=\”http://www.battlestationextreme.com/images/spacer.gif\” alt=\”\” width=\”15\” height=\”40\”></td>



                                                        
<td width=\&#8221;166\” class=\”text2\”>

                                                        
My BSE</td>



                                                    </
tr>



                                                </
table></td>



                                        </
tr>



                                        <
tr>



                                            <
td style=\&#8221;background-image:url(\”http://www.battlestationextreme.com/images/homepage10.jpg\”); height:29px\”>

                                            
<table width=\&#8221;100%\” border=\”0\” cellspacing=\”0\” cellpadding=\”0\” id=\”table29\”>



                                                    
<tr>



                                                        <
td width=\&#8221;8%\”><img src=\”http://www.battlestationextreme.com/images/spacer.gif\” alt=\”\” width=\”15\” height=\”29\”></td>



                                                        
<td width=\&#8221;92%\”>

                                                        
<class=\&#8221;link1\” href=\”http://www.battlestationextreme.com/forums/usercp.php\”>

                                                        
Register!</a></td>



                                                    </
tr>



                                                </
table></td>



                                        </
tr>



                                        <
tr>



                                            <
td style=\&#8221;background-image:url(\”http://www.battlestationextreme.com/images/homepage10.jpg\”); height:29px\”>

                                            
<table width=\&#8221;100%\” border=\”0\” cellspacing=\”0\” cellpadding=\”0\” id=\”table30\”>



                                                    
<tr>



                                                        <
td width=\&#8221;8%\”><img src=\”http://www.battlestationextreme.com/images/spacer.gif\” alt=\”\” width=\”15\” height=\”29\”></td>



                                                        
<td width=\&#8221;92%\”>

                                                        
<class=\&#8221;link1\” href=\”http://www.battlestationextreme.com/forums/private.php\”>

                                                        
Login</a></td>



                                                    </
tr>



                                                </
table></td>



                                        </
tr>



                                        <
tr>



                                            <
td><img src=\&#8221;http://www.battlestationextreme.com/images/homepage11.jpg\” alt=\”\” width=\”181\” height=\”8\”></td>



                                        
</tr>



                                    </
table>\&#8221;;
    
} else {
    echo \&
#8221;Your not logged in so we display this\”;
    
}
?>



I take it this is right?
PHP Code:

<?php If ($vbulletin->userinfo["userid"]!=0)

Cheers,
Carl

Billspaintball 05-07-2007 01:12 AM

Hi Carl,
I should have been a little clearer.
You need to escape the " that are part of the HTML code, not the " that are part of the PHP code.

Quote:

Originally Posted by CSGCarl (Post 1242426)
Ok well I have looked and replaced all the " with \" but I still seem to get errors for example:

.........

Code:

<?php If ($vbulletin->userinfo["userid"]!=0)
        {       
        echo \”<td style=\”background-image:url(\”http://www.battlestationextreme.com/images/homepage09.jpg\”); height:40px\”>

............................................................                                                                                                                                </table>\”;
        } else {
        echo \”Your not logged in so we display this\”;
        }
?>



Should be

Code:

<?php If ($vbulletin->userinfo["userid"]!=0)
        {       
        echo ”<td style=\”background-image:url(\”http://www.battlestationextreme.com/images/homepage09.jpg\”); height:40px\”>

............................................................                                                                                                                                </table>”;
        } else {
        echo ”Your not logged in so we display this”;
        }
?>

Quote:

I take it this is right?
PHP Code:

<?php If ($vbulletin->userinfo["userid"]!=0)


Yes thats ok, thats part of the PHP code so dont escape them.


Hope that all makes sense

Gooses 05-07-2007 11:56 AM

Wow, I love it! Thank you very much for making this.

TheAlchemist 05-08-2007 10:02 AM

ok......I have saved the following in a test.php file located in my website root (local machine)

Code:

<?php
$curdir = getcwd ();
chdir('c:\inetpub\wwwroot\tradinglab\forums');
require_once('c:\inetpub\wwwroot\tradinglab\forums\global.php');
chdir ($curdir);
?>
<html>
<body>
This is a heading<br />
This is some more stuff <br />
And another line<br />
You get the idea<br />
Just place stuff as you normally would with HTML<br />
I use CSS to style and position on my site fwiw<br />
<br />
How about we put the login box right under here?<br />
<br />
<?php
    require_once('c:\inetpub\wwwroot\tradinglab\login_inc.php');
?>
</body>
</html>

when I run the script this is what I get:

Code:

Notice: Undefined index: REQUEST_URI in c:\inetpub\wwwroot\tradinglab\forums\includes\class_core.php on line 1952

Notice: Undefined index: REQUEST_URI in c:\inetpub\wwwroot\tradinglab\forums\includes\class_core.php on line 1952

Notice: Undefined index: QUERY_STRING in c:\inetpub\wwwroot\tradinglab\forums\includes\class_core.php on line 1971

Notice: Undefined index: QUERY_STRING in c:\inetpub\wwwroot\tradinglab\forums\includes\class_core.php on line 1971

Notice: Undefined index: HTTP_REFERER in c:\inetpub\wwwroot\tradinglab\forums\includes\class_core.php on line 1602



Unable to add cookies, header already sent.
File: c:\inetpub\wwwroot\tradinglab\forums\includes\class_core.php
Line: 1952

can someone help me iron this thing out? thanks in advance

Billspaintball 05-08-2007 11:45 AM

Quote:

Originally Posted by TheAlchemist (Post 1243558)

when I run the script this is what I get:

Code:

Notice: Undefined index: REQUEST_URI in c:\inetpub\wwwroot\tradinglab\forums\includes\class_core.php on line 1952

Notice: Undefined index: REQUEST_URI in c:\inetpub\wwwroot\tradinglab\forums\includes\class_core.php on line 1952

Notice: Undefined index: QUERY_STRING in c:\inetpub\wwwroot\tradinglab\forums\includes\class_core.php on line 1971

Notice: Undefined index: QUERY_STRING in c:\inetpub\wwwroot\tradinglab\forums\includes\class_core.php on line 1971

Notice: Undefined index: HTTP_REFERER in c:\inetpub\wwwroot\tradinglab\forums\includes\class_core.php on line 1602


That error is from a vB file that we dont touch. Its called by vB's global.php file (I think).
I would hazard a guess that its something to do with a server setting, or possibly your cookie path setting in your vB control panel.

Quote:

Unable to add cookies, header already sent.
File: c:\inetpub\wwwroot\tradinglab\forums\includes\clas s_core.php
Line: 1952
This error is usually caused by whitespace before
PHP Code:

<?php
$curdir 
getcwd ();
chdir('c:\inetpub\wwwroot\tradinglab\forums');
require_once(
'c:\inetpub\wwwroot\tradinglab\forums\global.php');
chdir ($curdir);
?>

however in this case it could well be caused by your initial problem.

TheAlchemist 05-08-2007 12:53 PM

you are definetly right. I installed Vb on a live server, uploaded your hack and it works like a charm. thank you very much!!!!

CypherSTL 05-15-2007 01:13 PM

First of all, great hack.

I am having one issue though.

Code:

Warning: getimagesize() [function.getimagesize]: php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution in /home/ulancom/public_html/modules/login_vB36.php on line 34

Warning: getimagesize(http://www.unreallan.com/forums/image.php?u=1) [function.getimagesize]: failed to open stream: Success in /home/ulancom/public_html/modules/login_vB36.php on line 34

Any ideas why it would be doing this?

CSGCarl 05-15-2007 07:21 PM

Hey,

I'm still having a problem I've fixed other but...

Code:


Code:
Code:

<?php
If ($vbulletin->userinfo['userid']!=0)
        {       
        echo "<td style=\"background-image:url(\'http://www.battlestationextreme.com/images/homepage09.jpg\'); height:40px\">

                                                                                        <table width=\"181\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" id=\"table28\">



                                                                                                        <tr>



                                                                                                                <td width=\"15\"><img src=\"http://www.battlestationextreme.com/images/spacer.gif\" alt=\"\" width=\"15\" height=\"40\"></td>



                                                                                                                <td width=\"166\" class=\"text2\">

                                                                                                                My BSE</td>



                                                                                                        </tr>



                                                                                                </table></td>



                                                                                </tr>



                                                                                <tr>



                                                                                        <td style=\"background-image:url(\'http://www.battlestationextreme.com/images/homepage10.jpg\'); height:29px\">

                                                                                        <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" id=\"table29\">



                                                                                                        <tr>



                                                                                                                <td width=\"8%\"><img src=\"http://www.battlestationextreme.com/images/spacer.gif\" alt=\"\" width=\"15\" height=\"29\"></td>



                                                                                                                <td width=\"92%\">

                                                                                                                <a class=\"link1\" href=\"http://www.battlestationextreme.com/forums/usercp.php\">

                                                                                                                Register!</a></td>



                                                                                                        </tr>



                                                                                                </table></td>



                                                                                </tr>



                                                                                <tr>



                                                                                        <td style=\"background-image:url(\'http://www.battlestationextreme.com/images/homepage10.jpg\'); height:29px\">

                                                                                        <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" id=\"table30\">



                                                                                                        <tr>



                                                                                                                <td width=\"8%\"><img src=\"http://www.battlestationextreme.com/images/spacer.gif\" alt=\"\" width=\"15\" height=\"29\"></td>



                                                                                                                <td width=\"92%\">

                                                                                                                <a class=\"link1\" href=\"http://www.battlestationextreme.com/forums/private.php\">

                                                                                                                Login</a></td>



                                                                                                        </tr>



                                                                                                </table></td>\";
        } else {
        echo "Your not logged in so we display this";
        }
?>

Error:

Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /home/-----/public_html/homepage.php on line 1016

And line 1016 is:


Code:
Code:

echo "Your not logged in so we display this";
I can't see whats wrong there.

If some one could help me out this would be great.


Regards,

Carl


All times are GMT. The time now is 12:53 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.01696 seconds
  • Memory Usage 1,903KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (8)bbcode_code_printable
  • (9)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete