-1

I have finished my client project with laravel and after many test in local all works good , but after hosting project to serve show this error :

ErrorException (E_ERROR) file_get_contents(): https:// wrapper is disabled in the server configuration by allow_url_fopen=0 (View: /htdocs/resources/views/welcome.blade.php)

Please help me .

ousaid amine
  • 49
  • 1
  • 2

1 Answers1

1

allow_url_fopen is disabled (for good reason) on most productions servers. You shouldn't use it for getting files over URL. Use CURL fo it instead

Radek Suski
  • 1,352
  • 1
  • 13
  • 23