Log in

View Full Version : vB powered PHP pages


lightnb
07-14-2006, 05:11 AM
I read through the tutorial on how to make a vB powered page that uses a template, but what do I need to do if I have a pre-existing PHP script (that needs to parse as PHP) that I want to add vb functions to?

I have tried adding this to the begining of my script:require_once('http://www.domain.com/livexchange/forums/global.php');
require_once('http://www.domain.com/livexchange/forums/includes/functions_bigthree.php');
require_once('http://www.domain.com/livexchange/forums//includes/functions_forumlist.php');


if (!($permissions['forumpermissions'] & $vbulletin->bf_ugp_forumpermissions['canview']))
{
print_no_permission();
}

But get a call to undefined function 'print_no_permission' error. Presumably I havn't included the right file?

Has anyone successfull got an external PHP script to use the vB login/permissions system? I want to be able to check to see which user group a person is in, and have my script react based on that.

Thanks :)

thalamus
07-14-2006, 12:28 PM
Have you tried Logician's wonderful add-in here?

lightnb
07-14-2006, 12:40 PM
I have tried his product before, and while it's a nice product the php code I'm tring to run was too complicated to be parsed in that manner. I don't remember the exact details as it was a couple months ago, but I do remember that the script i tried to run inside of it was too complex and it didn't function correctly.

I think I may have found a solution though - This Hack (https://vborg.vbsupport.ru/showthread.php?t=100992) Seems to do what I need it to without being overly complex.

I'm having a couple issues with it, but hope to get that resolved soon.