Koji
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] PHP 8.3 Cache breaks site when using APIHello @vmarko ,
i have send the bug report.
yes, but its really strange, if i purged the cache on my device for some browser its okay. But on other devices the site is still broken ??
Forum: Plugins
In reply to: [W3 Total Cache] PHP 8.3 Cache breaks site when using API“Don’t cache” is selected there. The other available Option is only to disable WordPress REST API. But it makes no difference to switch it.
- This reply was modified 5 months, 2 weeks ago by Koji.
Forum: Plugins
In reply to: [W3 Total Cache] PHP 8.3 Cache breaks site when using APIHello @vmarko ,
we testet “Disk: Basic” Mode in a dev environment, but the now the error occurs here too ??
Forum: Plugins
In reply to: [W3 Total Cache] PHP 8.3 Cache breaks site when using APIHello @vmarko ,
sorry, we are on a shared hosting, so its not possible to use Redis or Memcached. The Options and PHP Modules are not available. I can only switch to Disk Basic Mode.
thanks you
Forum: Plugins
In reply to: [W3 Total Cache] PHP 8.3 Cache breaks site when using APIThe Code in the functions.php: (But i have deleted the urls and server path)
function worldstar_meta_comments() {
global $post;
if($post->post_type == 'post') {
if(!empty(get_post_custom_values('ThreadID'))) {
require_once "some/static/path/wcf/global.php";
$threadid = get_post_custom_values('ThreadID')[0];
$thread = new \wbb\data\thread\Thread($threadid);
$comment = $thread->replies;
$commentCount = strval($comment);
$lastpost = $thread->lastPostID;
if ($commentCount == 0) {
return '<a href=".../index.php?thread/'. $threadid . '&postID=' . $lastpost . '#post' . $lastpost . '" target="_blank"><span class="meta-comments">' . $commentCount . '</span></a>';
} else {
return '<a href=".../index.php?thread/'. $threadid . '&postID=' . $lastpost . '#post' . $lastpost . '" target="_blank"><span class="meta-comments site-commentcount">' . $commentCount . '</span></a>';
}
}
}
}(And i have also a comments.php, which includes the api form the forum, but i think its the same problem.)
Sadly, because of the error, i deactivated the api-functions in the live environment. We have a testing environment. But this is not a public site, is there a way I can send this to you personally?
Thank you very much!
We have the same issue. We have to deactivate the plugin, beacuse we are on php 5.6. Our hoster ist planning an update soon. ??
But in my opinion CSPRING is natively supportet only at php 7.x.x, you maybe should update the specifications for wordfence.
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Weird problem with the lightboxno sorry, i include jquery twice. Now it works. It don`t had any connection to a user. The issue was only when some of my php was executed (which includes jquery)
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Weird problem with the lightboxForum: Plugins
In reply to: [Responsive Lightbox & Gallery] Weird problem with the lightboxI can see that in some post the event listener is missing. (fancybox.mini.js and jquery)
How could that be? The “data-rel=”lightbox-gallery-2” ist set.- This reply was modified 6 years, 9 months ago by Koji.