Jaegers.Net
Forum Replies Created
-
Issue still in 2.57
same here, even with version 2.56 …
BTW: to prevent filling the log files, just comment line 177 of /wp-content/plugins/wp-external-links/includes/admin/class-wpel-settings-page.php out://trigger_error(‘Option value “‘ . esc_html($key) . ‘” cannot be found.’);
This should have no other impact.Hi Joe,
yes, that was exactly the situation. Sometimes a QR reader opens another browser where the user isn’t logged in. So he’s checking the tickets and they aren’t invalidated. With a message like “Ticket is valid and has been invalidated” this would be clear. Right now the message does not differ between logged in users and everyone else.
Best regards,
Michael
- This reply was modified 2 years, 9 months ago by Jaegers.Net.
Forum: Plugins
In reply to: [Prosodia VGW OS] function get_lazy_load_marker() on nullHi,
ich habe in den Logs mal nachgesehen und der Fehler taucht erstmals knapp 10 Minuten nach dem erfolgreich durchgeführten Update von Prosodia VGW OS von 3.18.3 auf 3.19.0 auf.
Das Debuggen und deaktivieren diverser Plugins wird allerdings einige Zeit in Anspruch nehmen …
Sch?nen Gru?,
Michael
Seems noone to bother, so …
changing the mentioned line (for me it’s that line with the latest version of W3 Total Cache) 1203 in /wp-content/plugins/w3-total-cache/Cdn_Plugin.php
from
if ( count( $this->_replaced_urls ) ) {
to
if ( is_array( $this->_replaced_urls ) && count( $this->_replaced_urls ) ) {
should fix it.
Best regards,
Michael
- This reply was modified 6 years, 9 months ago by Jaegers.Net.
Forum: Plugins
In reply to: [WP GDPR] Backend Comment Editing brokenHi Kim,
sure, hind here temporarily the complete list of my active Plugins:
https://0.jaegers.net/?afa173de2c7d831b#jpAkzrTImvzpPDSDjXW18N33mojUAB3Rs/AI/mczZcE=
I use the GeneratePress Theme.
Hope this helps.
Best regards,
Michael
Forum: Plugins
In reply to: [WP-Polls] Data privacy issue (IP address stored)After reviewing the Database entries, I modified the code a little bit as there are IPv6 addresses and ip addresses as hostnames.
So just for those, who want to fix it also:
line 378:
$get_voted_aids = $wpdb->get_col( $wpdb->prepare( "SELECT pollip_aid FROM $wpdb->pollsip WHERE pollip_qid = %d AND pollip_ip = %s", $poll_id, preg_replace('/[\.:]\d+$/', '.xxx', get_ipaddress()) ) . $log_expiry_sql );
and somewhere near line 1338
$pollip_ip = get_ipaddress(); $pollip_host = preg_replace('/^[^\.]*\./', 'xxx.', @gethostbyaddr($pollip_ip)); if ($pollip_host == $pollip_ip) $pollip_ip = $pollip_host = preg_replace('/[\.:]\d+$/', '.xxx', $pollip_ip); else $pollip_ip = preg_replace('/[\.:]\d+$/', '.xxx', $pollip_ip);
This should be fine.
Best regards,
Michael
Forum: Plugins
In reply to: [WP-Polls] Data privacy issue (IP address stored)Hi,
thanks for your reply.
I fixed it in a slight other way by masking the IP Address (last byte) and removing the hostname:
$pollip_ip = get_ipaddress(); $pollip_host = preg_replace('/^[^\.]*\./', 'xxx.', @gethostbyaddr($pollip_ip)); $pollip_ip = preg_replace('/\.\d+$/', '.xxx', $pollip_ip);
And on line 378
$get_voted_aids = $wpdb->get_col( $wpdb->prepare( "SELECT pollip_aid FROM $wpdb->pollsip WHERE pollip_qid = %d AND pollip_ip = %s", $poll_id, preg_replace('/\.\d+$/', '.xxx', get_ipaddress()) ) . $log_expiry_sql );
This seems to work fine, so far, even if users within the same subnet might not be able to vote.
Best regards,
Michael
Forum: Plugins
In reply to: [WP Support Plus Responsive Ticket System] Can not delete support plus!!!ok… fixed it by making a copy of /wp-content/plugins/wp-support-plus-responsive-ticket-system/asset/css/jquery-ui.min.css and renaming it to the missing jquery-ui.css.
But as this is just a workaround and might be a potential issue with further versions, please check.
Forum: Plugins
In reply to: [WP Support Plus Responsive Ticket System] Can not delete support plus!!!Hi,
same issues for me, too. Tried to add some dummy stuff to the custom CSS, but that didn’t change anything. Cache clearing doesn’t change anything.
There are two requests to this file, per page.
Any suggestions?
- This reply was modified 7 years, 11 months ago by Jaegers.Net.
I use the custom CDN Domain for my site.
Forum: Plugins
In reply to: [SiteOrigin Widgets Bundle] Doesn't work with WordPress 4.5.3Hi there,
same issue for me. After disabling all Plugins and enabling them one by one, this Widget Bundle crashes WordPress.
Backend is still working, so I can enable/disable plugins, edit pages, but frontend ist just white or delivering error 500.
debug.log shows nothing. No error messages on output, either.
But this issue occured suddenly only on this site: mantikore.jaegers.net
It used to work fine earlier this day, but now it’s broken. Any idea?Forum: Plugins
In reply to: [Featured Image Caption] Having trouble with the codeHi, i installed the updates, too, but there seem to be no working automatic code insertion. I checked both options in the settings.
If I add the [cc-featured-image] tag within the post, the caption is visible, but next to the image (where I expected the caption) is nothing at all.
Moreover, I see a strange error string on my test page:
string(4) "html" string(4) "html"
any idea?