uncovery
Forum Replies Created
-
Thanks for your reply. Trying to paste the carachter here:
??
It’s the smiley above. Let me know if that’s good enough for testing.
- This reply was modified 1 year, 6 months ago by uncovery.
Forum: Plugins
In reply to: [W3 Total Cache] Cache of wp options?Hi there, thanks so much for your support on this!
The website URL is https://hongkong-rocks.com/ and the settings enabled are
Page Cache (PHP Cache (APC/APCu)
Minify (PHP Cache (APC/APCu)
Opcode (Zend Opcache)
Database Cache (PHP Cache (APC/APCu)
Object Cache (PHP Cache (APC/APCu)
Browser Cache
Lazy Load
Fragment Cache (PHP Cache (APC/APCu)Reading through this now I wonder if I should exclude the query terms relating to the options settings?
Forum: Plugins
In reply to: [AMP] You cannot delete a plugin while it is active on the main site.It’s a dedicated (self-owned) root server, I had the latest version from the wordpress repo installed.
Anyhow, somehow I could now remove it. Tried several times before and it did not work…
It’s resolved!
Thanks a lot, finally had the time to follow up on this, your method was good, it’s working now.
Forum: Plugins
In reply to: [Contact Form 7] Captcha/spam issuesthanks a lot, that solved it!
Forum: Plugins
In reply to: [The Events Calendar] Category filter shows more to logged-in usershmmm now it shows up. Maybe some caching issue.
Forum: Plugins
In reply to: [The Events Calendar] Category filter shows more to logged-in usersFYI I am running the pro, latest Version 4.9.3.1
Forum: Plugins
In reply to: [Multi-column Tag Map] Tags starting with Numbers are sorted wrongWell, to be more precise, it does not “make headings for numbers that don’t exist”. Rather it makes the wrong one.
I found the code in question causing this around line 448 in mctagmap_functions.php:
if($scarr){ $groups = array_merge($groups, $scarr); }
$groups is listing the keys fine above but wrongly below this code snippet.
Your testing sample likely does not have $scarr, this is why you dont get this error.
My assumption is the follwing: the $groups variable has the array keys for the numbers as numeric values instead of strings. The merge makes the assumption that the numeric array keys are automatically assigned instead of intentionally named and re-sorts them as in 0,1,2,3,4… during the merge.Since you cannot easily typecast numeric array keys as strings, I recommend to add the $scarr variables to the $groups array instead of the merge. So changing the above code to this here fixes the issue:
if($scarr){ foreach ($scarr as $skey => $sdata) { $groups[$skey] = $sdata; } }
or, even easier:
if($scarr){ $groups += $scarr; }
See also here: https://stackoverflow.com/questions/6813884/array-merge-on-an-associative-array-in-php
You likely don’t even need the if… statement around the merge.
Alternatively it’s likely possible to simply add the individual $scarr elements above to the $groups instead of creating a new array and merging them later?
Anyhow, this change resolved the issue for me.
Hope this helps.
- This reply was modified 6 years, 4 months ago by uncovery.
- This reply was modified 6 years, 4 months ago by uncovery.
- This reply was modified 6 years, 4 months ago by uncovery.
- This reply was modified 6 years, 4 months ago by uncovery.
- This reply was modified 6 years, 4 months ago by uncovery.
- This reply was modified 6 years, 4 months ago by uncovery.
- This reply was modified 6 years, 4 months ago by uncovery.
Forum: Plugins
In reply to: [Multi-column Tag Map] Undefined variableI installed today from the WordPress plugin list. I have 15.0.1 installed on WP 4.9.6.
Here is a pastebin of the code that I found to cause the error:
https://pastebin.centos.org/901841/
Line 17 in the paste is the same as line 136 in the full file.
AS you can see, between the start of the function (line 5) and line 17, the variable $display is not initialized or used. So it’s normal that it throws this error. adding something like $display = false; above resolves the issue.Forum: Plugins
In reply to: [YouTube WordPress Plugin by Embed Plus] cUrl error 7Yeah, well, I switched hoster ??
Thanks for the support!Forum: Plugins
In reply to: [YouTube WordPress Plugin by Embed Plus] cUrl error 7Hi there, thanks for the support. I installed the plugin but it does not seem resolve the issue. I will see if the hosting company can fix that.
Forum: Plugins
In reply to: [Asgaros Forum] Undeclared Variables in latest versionHi there, sorry but I did not have time to test this dev version.
I saw you upgraded the release and it seems that the issues are resovled.thanks!
I think statements like “either author will point at the other” are a little unfair.
Look, I did not mean to be nasty, please don’t feel accused by that.
Anyhow, in the end I had to move to a different calendar plugin. The site I did this for does not need such a sophisticated plugin and I had too many issues with this template topic.
I was not able to insert the calendar into a page and put that on the frontpage and I was not able to reliably fix the frontpage template. Paying for the shortcode implementation would have been the only way, but there are other free plugins that have less features and for the small site I need it for the price is too high.
thanks a lot for the support you have given here, I understand that you don’t go further than you did. It’s a great plugin.
“… when the event page is used as a static front page … ” if detecting this would be so easy…