The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Comments |
#2
|
|||
|
|||
![]()
yes it can be done, ditch your current website membership scheme (if you have one) and put all the data into the vbulletin tables, then just require config.php on each page and use the same validation scheme as vb (will be sessions soon so you can use them), adding new fields to the member database is just a matter of using myphpadmin and should be no problem.
others have done it i know, a search here will probably find them i will tell you more about how it works i have a hack done that is going to merge links SQL and vbulletin together (not being made by me though) |
#3
|
|||
|
|||
![]()
Chris-
That's something I'd like to see- the marriage of Links and Vbulletin! (he he- I wonder what their children would look like?) Thanks for the tips on sitewide membership- that's something I'd like to implement as well. Thanks, TigerLily ![]() |
#4
|
|||
|
|||
![]()
Hi Guys,
I would very much appreciate it if someone could help me with a problem I am currently having when I try to use the VB registration system for other pages on my site. I am using this code on .php pages: <?php chdir("/usr/local/etc/httpd/htdocs/forums"); require("/usr/local/etc/httpd/htdocs/forums/global.php"); if ($bbuserid == 0) { eval("echo standarderror(\$bbtitle,\"".gettemplate("error_nop ermission")."\");"); exit; } if ($bbusername == "" || (isset($bbusername))==0) { $getusername=$DB_site->query_first("SELECT username FROM user WHERE userid=$bbuserid"); $username=$getusername[username]; $bbusername = $username; } else { $username = $bbusername; } ?> The code appears to work bar the fact that I get a message as follows: Fatal error: Failed opening required 'admin/config.php' (include_path='') in /usr/local/etc/httpd/htdocs/forums/global.php on line 33 I don't understand why it is unable to access the config file in the directory. The fundamental problem is that I really know nothing about php. If someone could give some pointers that would be greatly appreciated. I have read previous threads here but had no joy. The code above comes from another VB user and it works on his site. TIA Tim. |
#5
|
|||
|
|||
![]()
my guess is because of the chdir you already did confuses it.
Try copying config.php into your /forums directory and see if that works. |
#6
|
|||
|
|||
![]()
Chris,
Thanks very much for your reply. I have just tried that and it hasn't worked. It's as if the fault is within the 'global.php' file but obviously it isn't as it works fine under normal conditions. I am sure that the error is very simple but I just do not know enough to be able to see it. The only change I have made to the code since being sent it by another VB user is that I changed the directory url to obviously match the directories on my site rather than his. There aren't errors there though or it would not be able to access the 'global.php' file. Being ignorant is unusually frustrating. ![]() |
#7
|
|||
|
|||
![]()
OK what I have just doen is load up a duplicate version of the global.php file and the code now sources that.
Within the duplicate file I have added the full path to the config file on line 33. I have just tried it and I can get into the page now. However this still doesn't work as I should be directed to the login page when not already logged in and this is not happening ![]() |
#8
|
|||
|
|||
![]()
On hindsight, maybe this is now working fine.
Is it the case that it will be checking to see if a user is registered and that being logged in or out at the time is not relevant. Sorry to ask what is probably a daft question. TIA |
#9
|
|||
|
|||
![]()
try:
Code:
if ($bbuserid == 0) Code:
if ($bbuserid == "" ) |
#10
|
|||
|
|||
![]()
the script can only tell if you have registered if you are logged in so you would have to be logged in for it know you are registered.
are you saying that if you are not logged in it still dosen't send you to the error template? |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|