Form not sent without cookies

mattsh

Member
Hi!
Have a strange behavior with my forms not submitting with cookies disabled and using win 7 and IE 11. No js-errors on the page.

At win 10 and IE 11 the form is sent even if cookies is disabled.

Anyone?

Regards
Matt
Joomla 3.8.5
Fabrik 3.8.1
 
I have no idea, and unfortunately no way to test, unless I install a Win 7 virtual machine to test with. Which is outside the scope of community support.

-- hugh
 
Hi!

Instead I could show a message and use a Display text element if the user has win 7 as OS.
Have tested this this borrowed code, but the message isn't shown (no errors):
PHP:
$user_agent     =   $_SERVER['HTTP_USER_AGENT'];

function getOS() {

    global $user_agent;

    $os_array       =   array(
             '/windows nt 6.1/i'     =>  'My message....'
                        );

    foreach ($os_array as $regex => $value) {

        if (preg_match($regex, $user_agent)) {
            $os_platform    =   $value;
        }
    }
    return $os_platform;
}
$user_os        =   getOS();

print_r ($device_details);

What do I miss?

The code it self is working fine when I test it in a separate php-page.

Regards
Matt
 
Last edited:
We are in need of some funding.
More details.

Thank you.

Members online

Back
Top