dtrejogo
dtrejogo

Reputation: 251

My site doesn't show up on google chrome

I have my site and it looks great on FF, SF, IE8 but on google chrome it shows a blank page, but if you click on view source, it is there !!

on js console I got "Failed to load resource".

Also I have the same site on my localhost and it works great on chrome !!

My site: http://grupooak.com

take a look on chrome and if you know how to fix it , or a tool to debug it and find the issue lmk :)

Thanks !!

btw the site was developed on php (akelos framework)

Sometimes, if you try several times you can get the page, but it gets stock if you click on any link

Upvotes: 1

Views: 2930

Answers (6)

ilbesculpi
ilbesculpi

Reputation: 328

Have you tried disabling caching and/or output encoding?

Something similar happened to me before, and it was related to the Mime type.

If that's the case, take a look at this article: http://www.dyeager.org/post/2009/01/php-xhtml-mime-type-caching

Upvotes: 0

RobertPitt
RobertPitt

Reputation: 57268

You need to make sure the DOM is valid, as your html seems messy I would advise you to fix the following errors:

http://validator.w3.org/check?uri=http://grupooak.com/app/%3Fak%3D/account/sign_in/&charset=(detect+automatically)&doctype=Inline&group=0

Just a thought but try loading the page without any javascript files, and if the page loads, add one back in a t a time testing if it still loads, when you add the javascript back in and the page fails to load, let us know what that file is.

Its could be one of the following:

  • Your server is failing to respond to the call, unlikely
  • there is a memory leak in the javascript files, causing the brows to focus on the file which does not continue to load the file.

Reasons for this is if you go to the url: view-source:http://grupooak.com/app/?ak=/account/sign_in/ in Google Chrome, you will see the whole response, meaning that it is something that is loaded into the browser that's the issue.

If you inspect the element of the page you will see that it stops loading loading the page after the first javascript include, try UPDATING Your Libraries versions.

Upvotes: 4

Josiah
Josiah

Reputation: 1137

It's your rotator script. The first argument must be a beforeLoad event object.

Upvotes: 0

JB Nizet
JB Nizet

Reputation: 691933

When I inspect the computed styles in chrome, the html element's height is 0. This might explain why the page is blank.

Upvotes: 0

ChrisJ
ChrisJ

Reputation: 5251

First of all you should have a look at the W3C's HTML validator output, correct all of the errors, and try again. I guess that it will solve your issues with Chrome.

Upvotes: 0

madmik3
madmik3

Reputation: 6983

maybe fix this tag.

  <img style="width: 95px; height: 113px;" src="/app/images/homepage10.jpg"

also look at the developer tools in chrome they will point you to this error

/app/?ak=/account/sign_in/ Failed to load resource

info about developer tools http://code.google.com/chrome/devtools/docs/overview.html

Upvotes: 0

Related Questions