cancel
Showing results for 
Search instead for 
Did you mean: 

[SOLVED] Setup issue, blank page.

[SOLVED] Setup issue, blank page.

After I finish with composer and goto http://url/setup/ I get a page that has a grey bar at the tome and nothing else.

 

Composer finished and I set the file permissions then tried to access the setup page. I was pretty sure I had all the prerequisites met but something isn't working for sure.

 

I'm using the community edition to test functionality before recommending to a client if that makes any difference.

 

Version Outputs:
nginx version: nginx/1.8.0
PHP 5.6.16 (cli) (built: Jan 4 2016 21:25:41)
PECL/intl-3.0.0

 

PHP Extension List:

 

extension=bz2.so
extension=hash.so
extension=phar.so
extension=zip.so
extension=zlib.so
extension=iconv.so
extension=mbstring.so
extension=recode.so
extension=mysql.so
extension=mysqli.so
extension=pdo.so
extension=pdo_mysql.so
extension=pdo_sqlite.so
extension=sqlite3.so
extension=json.so
extension=shmop.so
extension=tokenizer.so
extension=curl.so
extension=exif.so
extension=gd.so
extension=imap.so
extension=bcmath.so
extension=gmp.so
extension=calendar.so
extension=session.so
extension=soap.so
extension=sockets.so
extension=xml.so
extension=xmlrpc.so
extension=pdf.so
extension=filter.so
extension=mcrypt.so
extension=openssl.so
extension=fileinfo.so
extension=posix.so
extension=ctype.so
extension=dom.so
extension=pspell.so
extension=simplexml.so
extension=wddx.so
extension=xmlreader.so
extension=xmlwriter.so
extension=xsl.so
zend_extension=/usr/local/lib/php/20131226/opcache.so
extension=tidy.so
extension=intl.so

 

4 REPLIES 4

Re: Setup issue, blank page.

How to diagnose Magento 2 errors: https://mage2.pro/t/307

Re: Setup issue, blank page.

Ok, I can see that it's failing to find some files. I looked back at the composer install output and there were no errors so I'm not sure why there would be missing files.

 

 

angular.js:7715GET http://10.2.0.62/setup/index.php/navigation 404 (Not Found)(anonymous function) @ angular.js:7715A @ angular.js:7429f @ angular.js:7214D @ angular.js:10168D @ angular.js:10168(anonymous function) @ angular.js:10940h.$eval @ angular.js:12703h.$digest @ angular.js:12126h.$apply @ angular.js:12728(anonymous function) @ angular.js:1204d @ angular.js:3795c @ angular.js:1198cc @ angular.js:1244Wc @ angular.js:1182(anonymous function) @ angular.js:19141a @ angular.js:8452(anonymous function) @ angular.js:3396q @ angular.js:228c @ angular.js:3391
angular.js:7715GET http://10.2.0.62/setup/index.php/navigation/side-menu 404 (Not Found)(anonymous function) @ angular.js:7715A @ angular.js:7429f @ angular.js:7214D @ angular.js:10168D @ angular.js:10168(anonymous function) @ angular.js:10940h.$eval @ angular.js:12703h.$digest @ angular.js:12126h.$apply @ angular.js:12728(anonymous function) @ angular.js:1204d @ angular.js:3795c @ angular.js:1198cc @ angular.js:1244Wc @ angular.js:1182(anonymous function) @ angular.js:19141a @ angular.js:8452(anonymous function) @ angular.js:3396q @ angular.js:228c @ angular.js:3391
angular.js:7715GET http://10.2.0.62/setup/index.php/navigation/header-bar 404 (Not Found)

Re: [SOLVED] Setup issue, blank page.

Sorry, default nginx.conf example was using ports not sockets.

Re: [SOLVED] Setup issue, blank page.

Hi,

I'm getting same problem like few requests are not loading on setup (navigation,sidemenu).

 

my nginx.conf file

================

user www-data;
worker_processes auto;
pid /run/nginx.pid;

events {
    worker_connections 768;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    # server_tokens off;

    # server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ##
    # SSL Settings
    ##

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
    ssl_prefer_server_ciphers on;

    ##
    # Logging Settings
    ##

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    ##
    # Gzip Settings
    ##

    gzip on;
    gzip_disable "msie6";

    # gzip_vary on;
    # gzip_proxied any;
    # gzip_comp_level 6;
    # gzip_buffers 16 8k;
    # gzip_http_version 1.1;
    # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

    ##
    # Virtual Host Configs
    ##

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}


#mail {
#    # See sample authentication script at:
#    # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
#
#    # auth_http localhost/auth.php;
#    # pop3_capabilities "TOP" "USER";
#    # imap_capabilities "IMAP4rev1" "UIDPLUS";
#
#    server {
#        listen     localhost:110;
#        protocol   pop3;
#        proxy      on;
#    }
#
#    server {
#        listen     localhost:143;
#        protocol   imap;
#        proxy      on;
#    }
#}

==================================

 

 

my sites-available default file

==========================

server {
    listen 80;
    listen [::]:80;
    server_name localhost;
    root /var/www/html;   
    index index.php index.phtml index.html index.htm index.nginx-debian.html;
    location / {
        try_files $uri $uri/ =404;
     allow all;
    }

    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
    }

    location ~ /\.ht {
        deny all;
    }
}

==========================================

 

Can you please guide me what is the exact problem?.

 

Regards,

RIthin