Version: , by RobAC
Developer Last Online: Jun 2020
Version: Unknown
Rating:
Released: 07-23-2001
Last Update: Never
Installs: 15
No support by the author.
Ok....this is my first hack. It's small and should be very straight forward.
The source of this hack is a thread that started in the main Code Hacks forum by a user looking for a hack that would allow their members to log in from the main home page of their site. Once logged in, it would display a Welcome message when the logged in member returned to the home page.
The original source was provided by Demolition, but members were having problems with getting the hack to run.
Warning/Disclaimer: I am not a well seasoned PHP programmer. I get by as best I can, but usually learn from example and tinkering. I have changed the PHP coding around slightly, and added much more HTML in order to format the input fields etc. This hack was tested using Internet Explorer 5.5 and Netscat 4.7. I have verified that it works in both OS's several times. I am also running the latest version of PHP on my server, so I'm not sure how to help those of you that are running PHP3, but I'll do the best I can. I won't make any promises though. I plan on continuing to work on this as well as add a few more features to it as time permits.
Download the attached file and edit it using a text editor of your choice. Add the pathway to your forums directory where noted. Save the file as a PHP file to your main forums directory. If your site's home page is an HTML document you will have to call the PHP file using a server side include. If you're not sure how to do this, you should search the forums here as this topic has already been covered several times.
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
Can you be more specific when you say it doesn't work? Are you getting warning messages back? What version of PHP are you running? Is the pathway to the global.php file correct?
Originally posted by Ruth smachol, thanks, but i tried that it doesn't work...
RobAC, this is what i am trying to do...
i need to do the following in non-vB pages:
(1) if the user already logged use their cookies and display a welcome $username + logout link
(2) if the user is not logged use the login form before displaying the page content.
(3) prevent access to users awaiting confirmation (3) and users awaiting moderation (4)
i get error almost everywhere except for the login box, there is an error on show_nopermission line, and the user is not welcomed in non-vb pages. (i changed member.php to member3.php and alreasy set the redirect to the index of my main site (non-vB) )
please help
Is the main index page of your site an HTML document on PHP? So in other words, when someone clicks the link to go to your site....if they are a member, you want them to automatically be logged in....if they're cookies are set properly and have direct access to the site. If they aren't logged in, you want to be brought to a page that has nothing on it, other than the log in fields? It sounds like this is a little beyond my capability and I'm not sure I can help.
Test 1
when i use that code without show_nopermission code, it only shows the login box in my index.php (non vB), when i try to login using the box, and it redirects me to the same page (index.php) it doesnt show the welcome screen, it shows the login box again (like if i'm not using cookies or not looged in)
Test 2
when i change number 0 to 1 in
Quote:
if ($bbuserinfo['userid']!=0) {
$username=$bbuserinfo['username'];
echo"Welcome Back, <b>$username</b>";
i get the welcome screen only "Welcome Back" and not $username
but when i logout and come back it doesnt show the login box at all.
Test 3
when i add this to the code
PHP Code:
if (!$bbuserinfo[userid] || $bbuserinfo[usergroupid]==3 || $bbuserinfo[usergroupid]==4) {
show_nopermission();
eval("dooutput(\"".gettemplate("error_wrongpassword")."\");");
}
i get error in show_nopermission(); line
Quote:
Make sure the script is in the same directory as your global.php file. This code works perfectly on my site
the path to global.php works fine, and didnt have problem with it, however it is not in the same directory as the global.php, because i am trying to put this code in every non-vB page to protect it.
Quote:
What version of PHP are you running?
PHP4 with Zend Optimizer
Quote:
Is the main index page of your site an HTML document on PHP?
For what it's worth I believe I also had a problem using this unless the script was in the same directory as the global.php file. Sorry, I don't know what to recommend.
I'm just beginning to learn PHP myself. All I know is that the code I posted above works on my site when global.php and the script using it ('last.php') are in the same directory. I haven't yet tested any other variations.
foldername being whatever folder(s) lead to your vb folder..
then you can put the script anywhere.
update:
I use this for mine... my vb folder is "main" and I have an "about" folder in the same root as the main folder and I use this in all my pages to get the global.php
Warning: Failed opening './admin/config.php3' for inclusion (include_path='') in ./bulletinboard/global.php3 on line 66
mferrell, make a duplicate file of global.php, change the path of config.php to the full path...and refer in your script to the duplicated global.php..and try...not sure if it works though.