blindmikey
Forum Replies Created
-
Forum: Reviews
In reply to: [Advanced Custom Fields (ACF®)] WordPress stole this pluginWe do understand.
1. Automattic has filed no lawsuit against WPEngine for supposed trademark violation, meaning this is a personal spat that’s intentionally negatively effecting the community.
2. WPEngine is now in the unique position of being one of the few WordPress Hosting Platforms that hosts there own mirror of the .org repository. Meaning they’re one of the few who are immune from Automattic’s supply chain attacks. This benefits WPEngine, not Automattic.
3. Point me to where in the GPL license it says code cannot be used commercially. Your argument is laughable. The GNU General Public License (GPL) explicitly allows for commercial use, including selling software based on GPL-licensed code.
The only thing Amateur here is the gaslighting.Also prevented messaging by patching the method _display_eligible_deal_notices() in advanced-coupons-for-woocommerce-free/Models/BOGO/Frontend.php
I added this to the codeshare as well.
Best,
-MForum: Plugins
In reply to: [Simple History – Track, Log, and Audit WordPress Changes] syntax errorI spoke too soon – I thought the site was on 7.3 – but was on 7.2.
Looks like the plugin author has *just* patched this.
Forum: Plugins
In reply to: [Simple History – Track, Log, and Audit WordPress Changes] syntax errorParse error: syntax error, unexpected ‘)’ in /home/curagohealth/public_html/app/plugins/simple-history/loggers/SimpleLogger.php on line 627
Forum: Plugins
In reply to: [Simple History – Track, Log, and Audit WordPress Changes] syntax errorThis just brought down my client’s site that’s running on 7.3
Issue is the encoding for the file is UTF-8 with BOM.
Solution is to re-encode the file as UTF-8 (without BOM).
More here:
https://stackoverflow.com/questions/2223882/whats-the-difference-between-utf-8-and-utf-8-without-bomIssue is that extra BOM data does not play nice with PHP.
Cannot view previous version 4.0.7 as it wasn’t tagged and available in SVN…
Confirmed. Client just responded with this error when trying to login to wordpress.
Forum: Plugins
In reply to: [Event Tickets and Registration] Call to undefined function wp_doing_cron()However if I change line 12 in /public_html/app/plugins/event-tickets/src/Tribe/Attendee_Registration/Shortcode.php
from
if ( is_admin() || wp_doing_cron() || wp_doing_ajax() ) {
to
if ( is_admin() || wp_doing_ajax() ) {Then all works well. So the required files seem to be successfully required? Perhaps the issue isn’t related to the directory structure?
Forum: Plugins
In reply to: [Event Tickets and Registration] Call to undefined function wp_doing_cron()ABSPATH is defined in wp-config.php
/** Absolute path to the WordPress directory. */ if ( !defined('ABSPATH') ) define('ABSPATH', dirname(__FILE__) . '/wp/');Forum: Plugins
In reply to: [Event Tickets and Registration] Call to undefined function wp_doing_cron()Part of the issue it seems is that our wordpress structure is set up as
public_html/
—- app/
——– plugins/
——– themes/
—- wp/
——– wp-admin/
——– wp-includes/This is however correctly set up, with no other issues from the numerous other plugins running.
I see in the error above, it’s attempting to require files such as
/public_html/blog/wp-includes/plugin.phphowever the correct path would be
/public_html/wp/wp-includes/plugin.phpThis is still an issue.
When used as a shortcode, the global localization var “tribe_dynamic_help_text” is not present at all in the markup.
When viewed at site.com/events the global localization var “tribe_dynamic_help_text” is in the markup.
As well as:
‘Undefined index: general-settings-open-links-in-new-window’ at /[…]/plugins/flow-flow-social-streams/includes/FlowFlow.php 64
‘Undefined index: general-settings-date-format’ at /[…]/plugins/flow-flow-social-streams/includes/FlowFlow.php 71
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Plugin Not Supporting Alternate WP-Content FoldersAny chance this is being worked on? This issue is about 7 months old since it was first reported in this thread: https://ww.wp.xz.cn/support/topic/not-compatible-with-wp-content-outside-wordpress-root-path/
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Plugin Not Supporting Alternate WP-Content FoldersAm in the same boat. Would very much like to see this patched, great plugin, but rendered unusable for many client sites.