Error while placing opencart site in domain

Asked

Viewed 63 times

0

I developed a website in opencart however when putting it in my domain it appears some strange errors someone knows what can be follow the print below with the error messages the errors can be viewed in the link provided above also.inserir a descrição da imagem aqui inserir a descrição da imagem aqui

Note: errors appear at the top of the page and at the bottom of the page there on the foot wheel

2 answers

1

Often are errors that do not impact anything, for being Warning, you can disable direct errors in opencart settings.

one of them must be solved by enabling the hosting fopen.

1


All these messages are not errors but warnings.

To disable errors and warnings in php is very simple. Just put this line of code at the beginning of your index:

<?php error_reporting(0); ?>

This way the errors were visible only in the back-end, and not in the front for the user to "scare".

This post explains more about this subject: https://aldeyf.wordpress.com/2013/11/11/desabilitar-avisos-de-erro-php-warnings/

Browser other questions tagged

You are not signed in. Login or sign up in order to post.