PDA

View Full Version : VB 3.0.4 released tonight....


KW802
01-02-2005, 01:05 AM
http://www.vbulletin.com/forum/showthread.php?p=787575#post787575

Now's who going to be first to let the rest of us know it went with the various VBA products? ;)

Zachery
01-02-2005, 01:09 AM
It should work fine :)

Our Sponsors
 

mholtum
01-02-2005, 05:53 AM
Glad I didnt start cleaning up my code.. Lots of miss uninstalled hacks, sweet this will do it for me. :)

Brian
01-02-2005, 10:52 AM
Upgraded my localhost and I'm not finding any issues with any vBa products. :)

Our Sponsors
 

Ogden2k
01-02-2005, 05:23 PM
The only problem I am having is I cannot log in via the portal, it says that " POST requests from foreign hosts are not allowed. "

Bubbasmurf
01-02-2005, 05:44 PM
Did the up date today, no problems here.................. :)

Ogden2k
01-02-2005, 05:48 PM
Did the up date today, no problems here.................. :)
Try logging in via the portal, does it work for you?

Ogden2k
01-03-2005, 12:27 PM
The only problem I am having is I cannot log in via the portal, it says that " POST requests from foreign hosts are not allowed. "
Is anyone else having this issue?

Brian
01-03-2005, 12:54 PM
Hmmm... I'm wondering if it might have something to do with the fact that you have your forums on a subdomain... Would you mind submitting a support ticket so I can have a look?

error
01-05-2005, 09:38 AM
I'm having the exact same problem, and yes I also have my forums on a subdomain.

It worked before I upgraded to 3.0.4.

Thanks
Niklas

Brian
01-05-2005, 09:47 AM
Try looking in your forum/includes/init.php file for this:
// referrer check for POSTs

And right above it add this:
define('SKIP_REFERRER_CHECK', true);

error
01-05-2005, 12:42 PM
Try looking in your forum/includes/init.php file for this:
// referrer check for POSTs

And right above it add this:
define('SKIP_REFERRER_CHECK', true);
yey it works!!!! Thanks alot Brian!!

Niklas

centris
01-05-2005, 07:46 PM
Would this statement from vbulletin have anything to do with it??

"we have altered the code in order to prevent POST requests being made from off-site forms, preventing malicious and mischevious self-submitting forms from affecting vBulletin installations."

Brian
01-05-2005, 09:07 PM
Yes. That code is recognizing a domain name as being separate from a sub-domain.

Zachery
01-05-2005, 09:29 PM
You probaly shouldnt kill it totaly, not 100% sure if this will work

if (defined('VBA_SCRIPT'))
{
define('SKIP_REFERRER_CHECK', true);
}

Instead

Brian
01-05-2005, 10:32 PM
Didn't think about that... I tried defining 'SKIP_REFERRER_CHECK' in login.php, but that didn't work for some reason. I'll look into a better method, but either should work fine for now.

error
01-09-2005, 12:04 PM
Well I upgraded to 3.0.5 and it works without any modifications.

Thanks for all the help Brian!

Niklas

mholtum
01-09-2005, 12:32 PM
Well I upgraded to 3.0.5 and it works without any modifications.

Thanks for all the help Brian!

Niklas
My upgrade from 3.0.3 to 3.0.5 was flawless as well.

pulsetoday
02-16-2005, 11:06 AM
You probaly shouldnt kill it totaly, not 100% sure if this will work

if (defined('VBA_SCRIPT'))
{
define('SKIP_REFERRER_CHECK', true);
}

Instead
Zach! That didn't work...

Bryan, is it possible to have it like also check POST from foreign hosts BUT take login from the main page?

Thanks :)

honestjohn
03-13-2005, 10:51 AM
I don't see another thread on this problem - I'm having it in 3.0.7 as well.
I'll try your correction in a moment, but it seems like it would be nice to have something that doesn't break the feature in vB (no externals) - I haven't ripped vb apart yet to figure out the code, or I would try.
I am technically not on a subdomain, but I'm guessing it's detecting some conflict in the way my webshost serves me, so this may be affecting quite alot of people (?)

Brian
03-13-2005, 11:19 AM
Look in your login.php file for this code:
//define('SESSION_BYPASS', 1);


Add this right below it:
define('SKIP_REFERRER_CHECK', true);

And see if that takes care of the problem.

honestjohn
03-14-2005, 06:18 PM
Look in your login.php file for this code:
//define('SESSION_BYPASS', 1);


Add this right below it:
define('SKIP_REFERRER_CHECK', true);

And see if that takes care of the problem.


I'm getting conflicting reports - I can't produce the error myself, which is making me wonder. But several users report that (after that fix) they no longer get the error message, but are logged out when they move from portal to forums (after having signed in at the portal).


Any other ideas?
(btw just bought your gallery script, looks pimp so far, very nice work on it all)

Brian
03-14-2005, 09:39 PM
Have you tried the suggestions posted in the FAQ forum about logging in problems?