toxicum
Forum Replies Created
-
Forum: Plugins
In reply to: [Super Progressive Web Apps] PHP warnings in pluginWhere can I send you this info to?
Forum: Plugins
In reply to: [Super Progressive Web Apps] PHP warnings in pluginForum: Plugins
In reply to: [WP Server Health Stats] url_fopen errors in logBut in order to do that they literally have to read the plugin code first to see which array keys we are accessing
Thanks you fixed it, but the statement I think is questionable. Your code is readable by everyone, so an attacker can read it easily (as I did). Maybe it is a mindset thing? For me, safe coding is the highest priority.
- This reply was modified 3 years, 2 months ago by toxicum.
Forum: Plugins
In reply to: [Mixed Media Gallery Blocks] Some menu-items are not translatable100% de / de_formal translation (status of yesterday), but we still have some non-translateables:
Upgrade page:
– The PREMIUM version is now available. Learn more about Plus / Pro Version
– Disclaimer
– Upgrade to the PLUS Plan and get more Blocks!
– Upgrade NOW
– PRO plan features
– Upgrade
Admin Menu:
– Contact Us
Albums preset:
– THANKS FOR BEING OUR AWESOME CUSTOMER!
– Leave a reviewForum: Plugins
In reply to: [WP Server Health Stats] url_fopen errors in logI disagree here. If a MITM attack occurs and one injects e.g. javascript contents, the admin possibly gets compromised.
Forum: Plugins
In reply to: [WP Server Health Stats] url_fopen errors in logUsing http might also be a security risk, as you do not sanitize the output of check_server_location() and directly output the contents of the function. As it is http, MITM-Attacks can happen.
Forum: Plugins
In reply to: [WP Server Health Stats] url_fopen errors in logWhat about using https://ipstack.com ?
Forum: Plugins
In reply to: [WP Server Health Stats] url_fopen errors in logIs there a possibility to disable server location lookup at all?
Or switch to another solution, like https://ipstack.com or using local MaxMind2 db?- This reply was modified 3 years, 3 months ago by toxicum.
Update Events Manager to 6.1.3 (all running PHP 8) lead to no problems on several sites here, so I assume a local problem.
The method generate_uuid() is defined in em-object.php. Check if it there. If not, something went wrong obviously with your update.
The file is located in wp-content/plugins/events-manager/classes/em-object.php.
See Line 1740.Additional notice: Console message occurs in Safari browser.
Found it. “Offline analytics” was enabled, which causes sw.php to load googleapis resources.
Sent it to you via your contact form.
Forum: Plugins
In reply to: [Mixed Media Gallery Blocks] Import from FooGallery?Thanks for that! All my FooGalleries have now been migrated to SimpLy.
Forum: Plugins
In reply to: [Mixed Media Gallery Blocks] Import from FooGallery?Nice. Where could I enter the Ids? When I create a Gallery, I’m taken to the block editor where I can upload Media or select from the Media Library. I haven’t found an input field for Media-Ids, yet.
Forum: Plugins
In reply to: [Mixed Media Gallery Blocks] Import from FooGallery?FooGallery exports JSON in this format for a Gallery:
[ { "ID": "2141", "template": "image-viewer", "name": "My Gallery Title", "datasource_name": "media_library", "attachment_ids": [ "4172", "4171", "4173", "4175" ], "settings": { "foogallery_items_view": "manage", "image-viewer_thumbnail_size": { "width": "640", "height": "360", "crop": "1" }, "image-viewer_thumbnail_link": "image", "image-viewer_lightbox": "foobox", "image-viewer_alignment": "fg-center", "image-viewer_looping": "enabled", "image-viewer_theme": "fg-light", "image-viewer_border_size": "fg-border-thin", "image-viewer_rounded_corners": "", "image-viewer_drop_shadow": "fg-shadow-outline", "image-viewer_inner_shadow": "", "image-viewer_loading_icon": "fg-loading-default", "image-viewer_loaded_effect": "fg-loaded-fade-in", "image-viewer_foobox_caption_source": "", "image-viewer_hover_effect_type": "normal", "image-viewer_caption_invert_color": "", "image-viewer_hover_effect_color": "", "image-viewer_hover_effect_scale": "", "image-viewer_hover_effect_caption_visibility": "fg-caption-hover", "image-viewer_hover_effect_transition": "fg-hover-fade", "image-viewer_hover_effect_icon": "fg-hover-zoom", "image-viewer_caption_title_source": "", "image-viewer_caption_desc_source": "", "image-viewer_caption_alignment": "", "image-viewer_captions_limit_length": "", "image-viewer_custom_settings": "", "image-viewer_custom_attributes": "", "image-viewer_custom_class": "", "image-viewer_include_title": "", "image-viewer_lazyload": "" }, "sorting": "", "retina": { "2x": "true", "3x": "true", "4x": "true" }, "custom_css": "", "attachments": { "4172": { "url": "https://www.example.com/wp-content/uploads/2022/09/IMG_20220101_104712.jpg", "title": "Image 1 Title", "caption": "", "description": "", "alt": "Image 1 Alt" }, "4171": { "url": "https://www.example.com/wp-content/uploads/2022/09/IMG_20220101_114947.jpg", "title": "Image 2 Title", "caption": "", "description": "", "alt": "Image 2 Alt" }, "4173": { "url": "https://www.example.com/wp-content/uploads/2022/09/IMG_20220101_104720.jpg", "title": "Image 3 Title", "caption": "", "description": "", "alt": "Image 1 Alt" }, "4175": { "url": "https://www.example.com/wp-content/uploads/2022/09/IMG_20220101_114934.jpg", "title": "Image 4 Title", "caption": "", "description": "", "alt": "Image 4 Alt" } } } ]