Home > Back-end >  “blob” links are blocked Livewire azure
“blob” links are blocked Livewire azure

Time:05-03

i have an issue with chrome, whenever i try to download the file it block show this error “blob” links are blocked

here is my view:

 <button wire:click="downloadResults" >
       <i ></i>
          Download all results
 </button>
   

And my controller

 public function downloadResults(){
 
    return Response::download($this->downloadResults);
        
}

CodePudding user response:

I recently experienced this issue and it turned out to be an issue with Google Tag Manager.

Comment out Google Analytics and it will work.

Update to the latest recommended Google Analytics snippet

How to check for live issues with google tag manager?

  • Related