skip to Main Content

Browser Cache Private S3 Resources – Nginx

Stack is: Angular Laravel S3 nginx I'm using S3 to store confidential resources of my users. Bucket access is set to private which means I can access files either by creating temporary (signed, dynamic) links or by using Storage::disk('s3')->get('path/to/resource') method…

VIEW QUESTION

laravel ajax not entering success function – Jquery ajax

first let me share some code: View / Form: <form id="xlsForm" enctype="multipart/form-data"> @csrf <input class="btn btn-primary" id="loadFile" type="file" name="excelfile" accept=".xls,.xlsx,.docx,.doc" required/> <input type ="hidden" name="load" value="0"> <button class="btn btn-light" name ="loadSubmit" id="loadSubmit" type="submit" value ="Analyze">Analyze</button> </form JQuery $('#xlsForm').submit(function uploadFile(event) {…

VIEW QUESTION
Back To Top
Search