vee
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Dashboard Notes] full uninstallYes, this plugin leave junks (a lot of them) in DB on uninstall.
From this document page ( https://developer.www.ads-software.com/plugins/plugin-basics/uninstall-methods/ ) WordPress recommend you to delete those data.
When your plugin is uninstalled, you’ll want to clear out any plugin options and/or settings specific to the plugin, and/or other database entities such as tables.Forum: Plugins
In reply to: [Fatal Error Notify] Can’t get notification. (Not working)I may have miscommunicated. I means I’ve just new/fresh install this plugin (no plugin’s options on DB). Then go to plugin’s settings page and never click on save button before.
The recipient email is already there and default option is ticked.
So, I just click on test button. Result is no email is out going.Next, I try again by clicked on save settings then click on test button -> everything work as expect.
Forum: Plugins
In reply to: [Fatal Error Notify] Can’t get notification. (Not working)I don’t use any of those cache. No Redis, Memcache(d), APC(u) None.
Forum: Plugins
In reply to: [Fatal Error Notify] Can’t get notification. (Not working)NO, please read WordPress document. They mention about delete options on uninstall not deactivate!
https://developer.www.ads-software.com/plugins/plugin-basics/uninstall-methods/
Copied from doc page. When your plugin is uninstalled, you’ll want to clear out any plugin options and/or settings specific to the plugin, and/or other database entities such as tables.
Less experienced developers sometimes make the mistake of using the deactivation hook for this purpose.
- This reply was modified 10 months, 3 weeks ago by vee.
Forum: Plugins
In reply to: [Fatal Error Notify] Can’t get notification. (Not working)For anyone who would like to test sending out emails from ANY software, I recomment using Papercut. It’s free and very good to capture outgoing emails on your PC with one or zero (no) configure. ????
Forum: Plugins
In reply to: [Fatal Error Notify] Can’t get notification. (Not working)Hi,
You maybe missed something. I’ve said that All other plugins are disabled that means no any 3rd party SMTP plugin running. And no, it is not in spam folder because it did not even send out.
However, I’ve tested again and see that the problem is from NEVER save any setting in the plugin’s settings page.
I have to go to settings page and must click on save button then click test button.
Otherwise there will be no options/settings in DB and it will not gonna work.Tested with PHP 8.1, 8.2. WordPress 6.4.x, 6.5 dev. All works.
One more problem, please remove all your plugin’s options in DB on uninstall the plugin. (This is mentioned in the document here).
When your plugin is uninstalled, you’ll want to clear out any plugin options and/or settings specific to the plugin, and/or other database entities such as tables.
- This reply was modified 10 months, 3 weeks ago by vee.
I’ve checked Create WebP version of image and then add image to post with classic editor or add image to widget with new editor, the image will always be the original extension as I uploaded. The webp file created but not in use and seems to never use until manually change file extension in the contents.
Hello,
I’m Bootstrap Basic & Bootstrap Basic 4 theme author. Did you test with other theme than Twenty nineteen?
I’m currently have a theme that is build for validate minimum requirement of Theme Check, it’s name Skinny. It’s very small, minimal, a little code and I think it is good option for you to test with some problem like this to see that what is required to make this plugin work.
Forum: Plugins
In reply to: [Dashboard Server Specs] Maybe add more info about DB?Replace this on line 119 of your plugin works fine.
$output .= ' <td>' . $wpdb->db_version() . ' (' . $wpdb->dbh->server_info . ')</td></tr>';
Confirm the same problem on Admin > Appearance > Widgets page.
Forum: Themes and Templates
In reply to: [Bootstrap Basic4] Title tagline menus centeredAnswered on GitHub.
Forum: Plugins
In reply to: [Polylang] Problem with Polylang plugin in AJAX filterWhen you make AJAX request using
ajaxurl
JS variable, Does it work if you add?lang=YOUR_LANGUAGE
to the AJAX URL?Forum: Plugins
In reply to: [Debug Bar] PHP ErrorsI have update the code and created diff/patch for this.
*************** *** 160,161 **** ! $this->is_request_error( $r['r'] ) ! || $r['args']['duration'] > $this->time_limit --- 160,168 ---- ! ( ! isset($r['r']) && ! $this->is_request_error( $r['r'] ) ! ) ! || ! ( ! isset($r['args']['duration']) && ! $r['args']['duration'] > $this->time_limit ! ) *************** *** 170 **** ! $duration = number_format( $r['args']['duration'], 1 ); --- 177 ---- ! $duration = number_format( (isset($r['args']['duration']) ? $r['args']['duration'] : 0), 1 ); *************** *** 174 **** ! if ( is_wp_error( $r['r'] ) ) { --- 181 ---- ! if ( isset($r['r']) && is_wp_error( $r['r'] ) ) { *************** *** 177 **** ! $code = esc_html( $r['r']['response']['code'] ); --- 184 ---- ! $code = (isset($r['r']) ? esc_html( $r['r']['response']['code'] ) : '0'); *************** *** 194 **** ! <td colspan="5"><pre>{$details}</pre></td> --- 201 ---- ! <td colspan="5"><pre style="max-height: 500px; overflow: auto; width: 70vw;">{$details}</pre></td>
I hope that it can be fix for anyone who have the same problem.
Forum: Plugins
In reply to: [Debug Bar] PHP ErrorsSadly, these seems to be reported more than a year.
https://www.ads-software.com/support/topic/undefined-index-r-error/
https://www.ads-software.com/support/topic/undefined-index-r/The plugin last update: 1 year ago.
Don’t know if it’s already dead yet?Forum: Plugins
In reply to: [Advanced Editor Tools] WordPress 5.8.1 CompatibleCurrently error:
wp_enqueue_script()
was called incorrectly. “wp-editor
” script should not be enqueued together with the new widgets editor