Hi,
for pro support, please open a helpdesk ticket at https://www.mapsmarker.com/helpdesk
what seems strange: the GeoJSON API endpoint for loading the layers for the map should be accessible at http://www.ibogainealliance.org/wp-content/plugins/leaflet-maps-marker-pro/leaflet-geojson.php?layer=1 – anyway I am getting a 404 error, which is strange, as http://www.ibogainealliance.org/wp-content/plugins/leaflet-maps-marker-pro/readme.txt is accessible. This could mean that some configuration on your server may block the execution of PHP files within the plugin directories, which is needed for my plugin.
I know some security plugins have that option, but it may also be that the server is configured (via htaccess for example) to block that requests – try to ask your hoster for assistance here.
best,
Robert
I’ve contacted support, but I do see the markers in the backend, which must mean that the php is being handled. I’m not sure if it makes a difference, but I’m just using the trial version to test it.
The host confirmed that there is nothing blocking the running of scripts in the folders. Any other idea what might be causing this?
Hi,
please check first if the file /wp-content/plugins/leaflet-maps-marker-pro/leaflet-geojson.php is available on your server. If yes, please contact your hoster again and ask him why the url
http://www.ibogainealliance.org/wp-content/plugins/leaflet-maps-marker-pro/leaflet-geojson.php?layer=1 leads to a 404 error
using the trial anyway doesnt make any difference – it is the same codebase as the full version.
I would also suggest to temporarily disable all other plugins to verify if this is caused by an unknown plugin conflict.
best,
Robert
Hi,
Yes, so there is an .htaccess file in the /wp-content/ folder that is blocking scripts from being called in any directory below it.
It has the following text:
<Files ~ ".*\..*">
order allow,deny
deny from all
</Files>
Can you tell me how to change this so that the files will be called? Should I just delete the .htaccess file?
Ok, the problem is solved. I just left that file there and added another .htaccess file in the plugin directory with the following code:
<Files *.php>
allow from all
</Files>