0

I pretty much followed the instructions on http://www.onehippo.org/library/enterprise/installation-and-configuration/linux-installation-manual.html for configuring a hippo cms instance on tomcat8.

I got it up and running without any ERRORs in the log files but if I query http://localhost:8080/site from my Browser a blank page is shown, but if I look at the source behind the page I see the html code I would expect.

Is there any configuration I am missing?

cloudnaut
  • 982
  • 3
  • 13
  • 35

2 Answers2

1

Since you have it running without errors and can see the actual HTML code, then I strongly suspect a client side issue.

I've seen this happening because of JavaScript error(s) that prevents rendering (check that in the developer tools of your browser of choice). Or, maybe you have a browser incompatibility: try using another browser. Could be also that the HTML is slightly malformed, you could try an HTML validator service.

0

Ok, I found the solution.

I was using a the following code (simplified)

<head>
  ...
  <script src="someurl" />

--> no html or script error but nothing displayed in the browser

<head>
  ...
  <script src="someurl" ></script>

works fine (https://developer.mozilla.org/en/docs/Web/HTML/Element/script)

cloudnaut
  • 982
  • 3
  • 13
  • 35