Announcement

Collapse
No announcement yet.

Blank screen and copyright info. -

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Blank screen and copyright info. -

    I have a new install on aws server. Everything was working fine until last night when suddenly I got the blank screen with copyright info. My error is as follows:

    VM22:102 Failed to construct 'WebSocket': The URL 'ws://54.237.195.9:80:8080?authToken=99d77df27c4f74c1e92 beaf0d9b7d01b&userId=1' is invalid.
    connect @ VM22:102
    VM45:186 Uncaught TypeError: tabList.unshift is not a function
    at child.getTabList (eval at _execute (espo.min.js,qr=1587902647.pagespeed.jm.2uB7AEMEYS .js:1), <anonymous>:186:25)
    at child.setup (eval at _execute (espo.min.js,qr=1587902647.pagespeed.jm.2uB7AEMEYS .js:1), <anonymous>:204:32)
    at child.initialize (espo.min.js,qr=1587902647.pagespeed.jm.2uB7AEMEYS .js:1)
    at child.Backbone.View (espo.min.js,qr=1587902647.pagespeed.jm.2uB7AEMEYS .js:1)
    at child [as constructor] (espo.min.js,qr=1587902647.pagespeed.jm.2uB7AEMEYS .js:1)
    at child [as constructor] (espo.min.js,qr=1587902647.pagespeed.jm.2uB7AEMEYS .js:1)
    at new child (espo.min.js,qr=1587902647.pagespeed.jm.2uB7AEMEYS .js:1)
    at Bull.Factory.<anonymous> (espo.min.js,qr=1587902647.pagespeed.jm.2uB7AEMEYS .js:1)
    at Bull.Factory.<anonymous> (espo.min.js,qr=1587902647.pagespeed.jm.2uB7AEMEYS .js:1)
    at espo.min.js,qr=1587902647.pagespeed.jm.2uB7AEMEYS. js:1
    DevTools failed to load SourceMap: Could not load content for chrome-extension://hnjalnkldgigidggphhmacmimbdlafdo/sourcemaps/onloadwff.js.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
    DevTools failed to load SourceMap: Could not load content for http://54.237.195.9/espocrm/purify.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE

    Any ideas?

  • #2
    Hi,
    please open config.php file from /data/ directory and check how the 'tabList' is represented. If it looks like:
    Code:
    'tabList' => ['Account', 'Contact', 'Lead', ...]
    I is wrong. It should look like:
    Code:
    'tabList' => [
        0 => 'Account',
        1 => 'Contact',
        2 => 'Lead',
        3 => 'Opportunity',
            ....
    ]
    Please describe what did you do when the blank page occurred?
    Last edited by Maximus; 04-28-2020, 06:58 AM.

    Comment


    • #3
      Solved for me by user champeau

      Comment

      Working...
      X