Error putting site in opencart in domain

0

I've developed a site in opencart but putting it in my domain it appears some strange errors somebody knows what can be follow the print below with the error messages the errors can be visualized in the link made available above also

NOTE: Errors appear at the top of the page and at the bottom of the page there on the foot wheel

    
asked by anonymous 31.08.2017 / 16:08

2 answers

1

All these messages are not errors, but warnings.

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

<?php error_reporting(0); ?>

In this way, the errors were visible only in the backend, not in the user front if it "scare".

This post explains more about this subject: link

    
19.09.2017 / 14:33
1

Many times they are errors that do not impact anything, because they are warning, you can disable the direct errors in the opencart settings.

One of them must be solved by enabling fopen hosting.

    
19.09.2017 / 14:24