Quote:
Originally Posted by bamaster
Hello,
Thank you for this script. It has really been exciting for my website.
I have had a couple users report that they were having problems logging in. I have not been able to duplicate it, however I found the error in the product-vbbuxplaza.xml file (phrase: vbplazaoptionexpired).
The user visits my website and receives this error:
They reported that had to delete all their cookies and cache to get to the site.
What causes this phrase to display? Anything I can do to prevent this from happening?
Thank you in advance!
|
I think I solved my own problem.
The problem was that these users would log in and the page would auto-redirect to vbplaza.php?do=expireoptions
It's a problem because that page does not exist in the root. I had to change line 73 in the vbplaza_global_start.php file from this:
$vbulletin->url = 'vbplaza.php?do=expireoptions';
to this
$vbulletin->url = '/forum/vbplaza.php?do=expireoptions';
Then the user with an expiring option is redirected to the correct place.
It would be nice for that URL to be dynamically set by some other setting. I'm sure I'm not the only website that has their forums in a subfolder. Hope this helps someone.