Hekmat.hasi Posted December 21, 2016 Report Posted December 21, 2016 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? Quote
Ian Posted December 21, 2016 Report Posted December 21, 2016 Do you use a fastcgi backend ? Hekmat.hasi 1 Quote
Hekmat.hasi Posted December 22, 2016 Author Report Posted December 22, 2016 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; } } Quote
Ian Posted December 23, 2016 Report Posted December 23, 2016 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; } Quote
Hekmat.hasi Posted December 26, 2016 Author Report Posted December 26, 2016 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 :( Quote
Recommended Posts
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.