Hi,
The “Cross-Origin Read Blocking (CORB)” error typically occurs when a web page tries to fetch a resource from another domain, and the browser blocks the request due to security reasons. To resolve this issue, you can try the following steps:
- Check API Key: Ensure that you have configured the API key for the mapping service (such as Google Maps) correctly in the uListing plugin settings. If the API key is missing or incorrect, it can cause the map to fail to load.
- CORS Configuration: If you control the server from which the resource is being fetched, you can configure Cross-Origin Resource Sharing (CORS) headers to allow requests from the domain where your website is hosted. This would involve modifying the server configuration to include appropriate CORS headers.
- Proxy Server: Set up a proxy server on your server-side to fetch the resource from the mapping service. This way, the request originates from your own domain, bypassing the CORS restriction..
By addressing these points, you should be able to resolve the CORS-related issue