That was what I saidLumpy Burgertushie wrote:I do believe that is because their instructions are for 3.0 not 3.1
robert
Then you're in the wrong forum, pal : this is for 3.1.xBigDrago wrote:That was what I saidLumpy Burgertushie wrote:I do believe that is because their instructions are for 3.0 not 3.1
robert
Code: Select all
$this->ip = htmlspecialchars_decode($request->server('REMOTE_ADDR'));
Code: Select all
if ($request->server('HTTP_CF_CONNECTING_IP') != '')
{
$this->ip = htmlspecialchars_decode($request->server('HTTP_CF_CONNECTING_IP'));
}
else
{
$this->ip = htmlspecialchars_decode($request->server('REMOTE_ADDR'));
};
Code: Select all
!empty($request->server('HTTP_CF_CONNECTING_IP'))
Well. It is not just only posting. But guests can't register.fulgan wrote:Well, I don't allow guest posting so I really can't tell (why do that, anyway ? You're really in that much need for Russian counterfeit "enhancement" pills ?). Sounds like a minor issue, though.
BigDrago wrote:Well. It is not just only posting. But guests can't register.fulgan wrote:Well, I don't allow guest posting so I really can't tell (why do that, anyway ? You're really in that much need for Russian counterfeit "enhancement" pills ?). Sounds like a minor issue, though.
Nope, but on the other hand, I tested guest user registration and, at least on my board, it worked just fine no matter what settings I used for the "Tie forms to guest sessions" parameter.SugarD-x wrote:Did anyone ever come up with a cleaner fix?