bushal
Forum Replies Created
-
Sorry –
My bad – I now see that anything that can be customizer-ed seems to need to be changed there and not in a child theme, even if it was not customized.Forum: Plugins
In reply to: [Trackserver] Overlays and GeoJsonThanks very much for your help. I will fiddle with various options and let you know how I go, as (of course) its the polygons that i am most interested in – they show the fire extent, and i am trying to combine the last known positions of the trucks with where we believe the fire is, along with any new reports of fire extent that the trucks might upload.
So I have several options, either to convert the GeoJson to KML, which would also allow me to plot the extent on android devices (for example – Locus maps) or to export the location information from TrackServer and plot it on Google maps or similar.
Back to the drawing board, but there is at least one option that looks like it will work.
Thanks again for your help
Forum: Plugins
In reply to: [Trackserver] Overlays and GeoJsonThanks Martijn, that would be great.
Forum: Plugins
In reply to: [Trackserver] Oruxmaps unable to connectThat was just the first one I saw. If it helps i have also seen
/trackserver/gettrack/
/
/tracks/
I also saw https://excessiveweaving.com.au/mapmytracks in $uri on two occasions, but all others were /mapmytracksForum: Plugins
In reply to: [Trackserver] Oruxmaps unable to connectI edited the file mentioned to add (before 1488)
error_log( $request_uri );
error_log( $uri );
and get
[02-Mar-2020 21:05:50 UTC] /.info.php
[02-Mar-2020 21:05:50 UTC] /mapmytracksI then disabled all other plugins (this is a test wordpress site)
Tracks started coming in..
Enabling the other plugins one at a time shows that there is a conflict with Woocommerce – so probably not something that many sites will be running alongside yours, but still quite common.
Thanks for your help
Alastair BreinganForum: Plugins
In reply to: [Exports and Reports] Where is the report configuration saved?Hi I also have this problem in the last couple of weeks, but the reports keep being deleted from the sql database.
I am also convinced the upgrade has gone wrong somehow
Forum: Themes and Templates
In reply to: [Storefront] Vary shop columns by displayport widthThanks – I will give that a go
Sorry I should have noted that other emails are working properly including those forom (for example KNews plugin)
Forum: Plugins
In reply to: [AutoChimp] Version 2.12 can't activate Buddypress Sync@wandererllc for your info i loaded up 2.13 and tried to toggle the Sync option (under the Plugins Tab of AutoChimp settings) – As before it allows me to uncheck it correctly but wont allow me to check it again. The code i mentioned above does not seem to have changed (and i dont understand how it could ever have worked) as it seems to only save the settings if the sync is on.
Cheers
AlForum: Plugins
In reply to: [AutoChimp] Version 2.12 can't activate Buddypress SyncI have also had the same problem, both with the Cimp User extra fields and with my own plugin which I am integrating with AutoChimp. It seems to occasionally work in my environment (WP 3.5.2 and PHP 5.3.27) but often does not.
Now i am a newbie but i suspect the code in autochimp-plugins.php SaveSettings() as it seems to only save the settings if they are already set (GetUsePlugin() = true)(see code below).
I hacked it by returning ‘1’ in GetUsePlugin – in your case it would be in plugins\autochimp\plugins\SyncBuddyPress.phpHope this helps
Al
public function SaveSettings()
{
$plugins = $this->GetPluginClasses( $this->GetType() );
foreach ( $plugins as $plugin )
{
if ( $plugin::GetInstalled()&& $plugin::GetUsePlugin() )
{
$p = new $plugin;
$p->SaveSettings();
}
}
}