Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. <?php
  2. header("Content-type: text/html; charset=utf-8");
  3. date_default_timezone_set('America/Sao_Paulo');
  4. error_reporting(-1);
  5.  
  6. ini_set('display_errors', 'On');
  7.  
  8. spl_autoload_register(function ($class) {
  9. $class = str_replace('\', '/', $class);
  10. include "/home/nomedomeusite.com.br/public_html/" . $class . '.class.php';
  11. });
  12. ini_set('display_errors', 'On');
  13. $db = new mysqli('aquivaimeuhost', 'usuario_Db', 'senha_Db') or die('Erro ao conectar');
  14. $db->select_db("aquivaidatabase") or die('Erro ao conectar com o banco de dados');
  15. $db->set_charset('utf8');
  16.  
  17. ?>
  18.  
  19. Warning: include(/home/joinimoveis.com.br/public_html/app/Service.class.php): failed to open stream: No such file or directory in /home/joinimoveis/public_html/config.php on line 10
  20.  
  21. Warning: include(): Failed opening '/home/joinimoveis.com.br/public_html/app/Service.class.php' for inclusion (include_path='.:/opt/cpanel/ea-php70/root/usr/share/pear') in /home/joinimoveis/public_html/config.php on line 10
  22.  
  23. Fatal error: Uncaught Error: Class 'appService' not found in /home/joinimoveis/public_html/index.php:12 Stack trace: #0 {main} thrown in /home/joinimoveis/public_html/index.php on line 12
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement