Advertisement
pusatdata

Solved Joomla: Error Strict Standards

Mar 19th, 2015
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. http://pungki.blogspot.com/2012/01/mengatasi-error-joomla.html
  2.  
  3. Strict Standards: Non-static method JLoader::register() should not be called statically in ....
  4.  
  5. 1. ini bisa;
  6. Saya mengikuti cara diatas, dan berhasil dengan sedikit perubahan path saja. Yang saya lakukan adalah :
  7. Edit file C:\xampp\php\php.ini --> Bukan yang php.ini-development atau php.ini-production
  8. Cari parameter error_reporting = E_ALL | E_STRICT dan ubah menjadi error_reporting = E_ALL | ~E_STRICT
  9. Cari parameter display_errors = On dan ubah menjadi display_errors = Off
  10. Restart XAMPP via Control Panel-nya.
  11.  
  12.  
  13. ini ada juga:
  14. SOLUTION: You need to a little fix in php.ini file
  15. Open php.ini file.
  16. Find “error_reporting = E_ALL | E_STRICT” (this would be around line number 516)
  17. Replace with “error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED“
  18. Restart the APACHE and you are done.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement