Closed dfiel closed 8 years ago
After installing Economizzer on a new Ubuntu server, with nginx as a web server, browsing to the site gives the following error:
My nginx config is:
server { listen 80; listen [::]:80; location ~ \.php$ { try_files $uri =404; fastcgi_pass unix:/var/run/php/php7.0-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } root /var/www/html/economizzer/web; client_max_body_size 300M; index index.php index.html index.htm; server_name econ.mydomain.com; location / { try_files $uri $uri/ /index.php?$query_string; autoindex on; sendfile off; } }
I don't need OAuth, this install will be only used by me and my girlfriend
revised! :D added "yiisoft/yii2-authclient": "2.0.6" in composer.json file Run the composer update command and try again
"yiisoft/yii2-authclient": "2.0.6"
composer update
After installing Economizzer on a new Ubuntu server, with nginx as a web server, browsing to the site gives the following error:
My nginx config is: