We have 5.7.11 installed and everything has been operating normally. Today, after sign in, we receive a blank screen - starts to render menu, no main content, and the footer appears. HTML as follows:
<!doctype html> <html> <head> <title>Global Careers</title> <script type="text/javascript" src="client/espo.min.js?r=1579608827" data-base-path=""></script> <link href="client/css/espo/hazyblue.css?r=1579608827" rel="stylesheet" id='main-stylesheet'> <link rel="preload" href="client/fonts/open-sans/open-sans-v16-cyrillic_latin_cyrillic-ext_latin-ext-regular.woff2" as="font" as="font/woff2" crossorigin> <link rel="preload" href="client/fonts/open-sans/open-sans-v16-cyrillic_latin_cyrillic-ext_latin-ext-600.woff2" as="font" as="font/woff2" crossorigin> <meta content="text/html;charset=utf-8" http-equiv="Content-Type"> <meta content="utf-8" http-equiv="encoding"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta name="description" content="EspoCRM is Open Source CRM application. Increase profitability through customer loyalty!"> <meta name="mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-capable" content="yes"> <link rel="shortcut icon" sizes="196x196" href="client/img/favicon196x196.png"> <link rel="icon" href="client/img/favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="client/img/favicon.ico" type="image/x-icon"> <script type="text/javascript"> $(function () { Espo.loader.cacheTimestamp = 1579608827; Espo.require('app', function (App) { var app = new App({ id: 'espocrm-application-id', useCache: true, cacheTimestamp: 1579608827, basePath: '', url: 'api/v1' }, function (app) { app.start(); }); }); }); </script> </head> <body> <div class="container content"></div> <footer> <p class="credit small">© 2019 <a href="https://www.espocrm.com" title="Powered by EspoCRM" alt="Visit official EspoCRM website">EspoCRM</a></p> </footer> </body> </html> Have checked the following:
PHP version 7.3
PHP.ini has recommended settings
nothing in error log
Check SQL - all looks fine
In fact, nothing has changed since yesterday when everything was working.
Have users in UK and UAE - all experiencing same issue.
Same result in Chrome, Safari, Firefox and on both Mac and Windows.
Any suggestions?
Please help.
<!doctype html> <html> <head> <title>Global Careers</title> <script type="text/javascript" src="client/espo.min.js?r=1579608827" data-base-path=""></script> <link href="client/css/espo/hazyblue.css?r=1579608827" rel="stylesheet" id='main-stylesheet'> <link rel="preload" href="client/fonts/open-sans/open-sans-v16-cyrillic_latin_cyrillic-ext_latin-ext-regular.woff2" as="font" as="font/woff2" crossorigin> <link rel="preload" href="client/fonts/open-sans/open-sans-v16-cyrillic_latin_cyrillic-ext_latin-ext-600.woff2" as="font" as="font/woff2" crossorigin> <meta content="text/html;charset=utf-8" http-equiv="Content-Type"> <meta content="utf-8" http-equiv="encoding"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta name="description" content="EspoCRM is Open Source CRM application. Increase profitability through customer loyalty!"> <meta name="mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-capable" content="yes"> <link rel="shortcut icon" sizes="196x196" href="client/img/favicon196x196.png"> <link rel="icon" href="client/img/favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="client/img/favicon.ico" type="image/x-icon"> <script type="text/javascript"> $(function () { Espo.loader.cacheTimestamp = 1579608827; Espo.require('app', function (App) { var app = new App({ id: 'espocrm-application-id', useCache: true, cacheTimestamp: 1579608827, basePath: '', url: 'api/v1' }, function (app) { app.start(); }); }); }); </script> </head> <body> <div class="container content"></div> <footer> <p class="credit small">© 2019 <a href="https://www.espocrm.com" title="Powered by EspoCRM" alt="Visit official EspoCRM website">EspoCRM</a></p> </footer> </body> </html> Have checked the following:
PHP version 7.3
PHP.ini has recommended settings
nothing in error log
Check SQL - all looks fine
In fact, nothing has changed since yesterday when everything was working.
Have users in UK and UAE - all experiencing same issue.
Same result in Chrome, Safari, Firefox and on both Mac and Windows.
Any suggestions?
Please help.
Comment