+ Reply to Thread
Results 1 to 5 of 5

Thread: SourceMap 500 and 404 Errors

Hybrid View

  1. #1
    Senior Member
    Join Date
    Mar 2019
    Location
    Philadelphia, PA, USA
    Posts
    120

    SourceMap 500 and 404 Errors

    Hi, my browser console shows 500 and 404 errors for:

    DevTools failed to load SourceMap: Could not load content for https://www.xxx.com/templates/my_tem...plete.css.map: HTTP error: status code 500, net::ERR_HTTP_RESPONSE_CODE_FAILUREDevTools failed to load SourceMap: Could not load content for https://www.xxx.com/upup.sw.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
    DevTools failed to load SourceMap: Could not load content for https://www.xxx.com/upup.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE

    I noticed the same errors on Flynax's demo site:

    DevTools failed to load SourceMap: Could not load content for https://auto.demoflynax.com/upup.sw.min.js.map: HTTP error: status code 404, net::ERR_HTTP2_PROTOCOL_ERROR
    DevTools failed to load SourceMap: Could not load content for https://auto.demoflynax.com/upup.min.js.map: HTTP error: status code 404, net::ERR_HTTP2_PROTOCOL_ERROR
    DevTools failed to load SourceMap: Could not load content for https://auto.demoflynax.com/template...plete.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE

    Any ideas?

  2. #2
    We already solved it in a new version and you can solve it with new patch also.
    in some css files in the end of files exist line: /*# sourceMappingURL=search_map.css.map */

    list of files where need to remove last line:
    templates/general_nova/controllers/search_map/search_map.css
    templates/general_nova/controllers/profile/profile.css
    templates/general_nova/controllers/add_listing/add_listing.css
    templates/general_nova/components/step-form-bottom-nav/step-form-bottom-nav.css
    templates/general_nova/components/sortable/sortable.css
    templates/general_nova/components/popup/popup.css
    templates/general_nova/components/popover/popover.css
    templates/general_nova/components/plans-chart/plans-chart.css
    templates/general_nova/components/marker-label/marker-label.css
    templates/general_nova/components/marker-cluster/marker-cluster.css
    templates/general_nova/components/map-listing/map-listing.css
    templates/general_nova/components/map-control/map-control.css
    templates/general_nova/components/map-account/map-account.css
    templates/general_nova/components/loading-spinner/loading-spinner.css
    templates/general_nova/components/geo-autocomplete/geo-autocomplete.css
    templates/general_nova/components/file-upload/file-upload.css
    templates/general_nova/components/crossed-category/crossed-category.css
    templates/general_nova/components/category-selector/category-selector.css
    templates/general_nova/components/auth-form-section/auth-form-section.css
    Last edited by Viktor; August 3, 2020 at 03:22 AM.
    Viktor,
    Flynax technical department,
    Best wishes.

  3. #3
    Senior Member
    Join Date
    Mar 2019
    Location
    Philadelphia, PA, USA
    Posts
    120
    Thanks Viktor,

    That helped clear the geo complete 404. Do you know where to fix the 404 caused by the PWA app?

    DevTools failed to load SourceMap: Could not load content for https://www.site.com/upup.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
    DevTools failed to load SourceMap: Could not load content for https://www.site.com/upup.sw.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE

  4. #4
    The same but this files located in home directory with all other files. Find upup.min.js and upup.sw.min.js and file lines:

    //# sourceMappingURL=upup.min.js.map
    //# sourceMappingURL=upup.sw.min.js.map

    and remove it.
    Viktor,
    Flynax technical department,
    Best wishes.

  5. #5
    Senior Member
    Join Date
    Mar 2019
    Location
    Philadelphia, PA, USA
    Posts
    120
    Thanks Viktor!

+ Reply to Thread