My site is partially working and its all blank and its not a promotion its underdevelopment project

Website URL

Ecommerce PHP (000.pe)

Error Message

no error message

Other Information

its a php site and i uploded files via ftp now when itry to vist the site its just a sidebar is visible and the whole page is blank.help me please

Your site is wrapped with <!-- Comment Tags -->, and there seems to be a PHP Error occurring:

2 Likes

this is not the whole code showing when inspect the page can it be the file got corrupted.when i run the same file on local host it runs perfectly. and i also enabled php error show in .htacccess file in my root directory.can u give me some more reviews about it.thanks for replying @SpookyKipper .


this is the ss of my inspect on my localhost. feel free to ask any needed information to fix the problem.

i have used bootstrap for frontend do i have to do some seup to run it on my server

Bootstrap itself is just CSS and Javascript, so you can run it anywhere where you have files that are accessible to a browser. So no need to setup anything server side.

However, the error in the generated source indicates that there is also PHP code in your site, and this PHP code is crashing.

It appears to have been wrapped in HTML comments, but HTML comments don’t prevent PHP code from executing. And if that PHP code crashes, it will stop your page from being rendered, even if there are HTML comment tags.

If you don’t want your PHP code to be executed, you will have to comment it out with PHP comment tags instead.

Or just fix the PHP error, of course, so the page is rendered correctly.

7 Likes

thanks it worked :slight_smile:

2 Likes

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