Css and images not loading

Website URL

(https://computix.infinityfreeapp.com/)

When I visit my website I only see the logo image displaying but all the other images aren’t even loading, with the same referencing as the logo. The css styling also doesn’t display what should I do?

When I click View Source on your website, I see a lot of red.

The main issue appears to be this line at the top of the file:

<php session_start(); ?>

The question mark in the PHP opening tag is missing (it should be <?php instead of <php). As far as I can tell, this extra tag outside the HTML document is thoroughly confusing the HTML parser of my browser, making a big mess of the content.

I suggest changing this first and see if it helps.


Additionally, when I check the Console in my browser, it tells me the page responded with a 500 Internal Server Error. This usually means the PHP code crashed. That can also result in an incomplete page being generated.

5 Likes

thanks ill look into it

which file exactly cause this is the index

when I inspect my page on chrome i see what you’re talking about but in my actual code this isn’t there.

fixed thanks

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.