Jump to content

You need to enable cookies before you can use Revive Adserver


Recommended Posts

Am trying to install Revive Adserver 4.0.0 on a dedicated server (Linux, Nginx), PHP Configuration and File Permissions is OK, On welcome page when i click agree to install i get this message " You need to enable cookies before you can use Revive Adserver ", my browsers cookies is enabled and i tried Google chrome, Firefox, Safari and i get the same error.

i have searched in this forum about this issue and all the solutions not worked with me.

this is the installation link: http://ads.weziwezi.com/

can you help me please?

Link to comment
Share on other sites

17 hours ago, Ian van Marwijk said:

Do you use a fastcgi backend ?

Yes am using fastcgi backend.

this is my server config:

server {
    listen 80 ;
    root   /home/nginx/adserver/revive-adserver/;
    index index.php;
    server_name ads.weziwezi.com;

    location / {
        try_files $uri $uri/ =404;
    }

    location ~ \.php$ {
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include fastcgi_params;
    }
    
}

Link to comment
Share on other sites

Try this :

 

location ~ \.php$ {
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        fastcgi_pass_header Set-Cookie;
        fastcgi_pass_header Cookie;

        include fastcgi_params;
    }

Link to comment
Share on other sites

On 12/23/2016 at 2:12 PM, Ian van Marwijk said:

Try this :

 

location ~ \.php$ {
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        fastcgi_pass_header Set-Cookie;
        fastcgi_pass_header Cookie;

        include fastcgi_params;
    }

not wokring , the same error :(

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...