New js not recognized in web host

0

To put in context, a web page in a shared hosting, with development in local scope, both javascript that will put down work correctly in local area (localhost: 8000) Both URL and code in the template only change the name of the file, both files are in the same folder.

<script src="http://xxx.xxx.cl/js/validaciones.js"></script>
<script src="http://xxx.xxx.cl/js/jquery.rut.js"></script>

<script src="{{asset('js/validaciones.js')}}"></script>
<script src="{{asset('js/jquery.rut.js')}}"></script>

Initially I thought it could be the laravel cache, so I cleaned it as well as the browser cache without success, in the end I decided to try from a machine that had never entered this web and "surprise", it did not work either, the 2nd scrip jquery.rut.js throws a 404 error and even if I make changes to validaciones.js it shows me the file prior to the first change before the error occurred.

So I do not know what could be the cause of the problem.

    
asked by jaime 21.09.2018 в 15:29
source

0 answers