Dion
@diondesigns on WordPress.org
- Member Since: February 16th, 2014
- Location: Indiana, USA
- Website: forum.dion-designs.com
- Job Title: Owner
- Employer: Dion Designs
Contribution History
Dion’s badges:- Plugin Developer
-
Posted a reply to 503 Service Temporarily Unavailable nginx error; NO HOSTING/C-PANEL ACCESS, on the site WordPress.org Forums:
Who is paying the hosting bill? If it's you, then find some recent payment receipts… -
Posted a reply to php 8 Array to string conversion error, on the site WordPress.org Forums:
I strongly suggest that you revert to PHP7.4. The code you posted isn't even compatible… -
Posted a reply to Edit WordPress posts with phpmyadmin, on the site WordPress.org Forums:
When you run that query, phpMyAdmin will tell you how many rows were affected by… -
Posted a reply to Edit WordPress posts with phpmyadmin, on the site WordPress.org Forums:
If you're using a cache plugin, you'll need to purge the cache in order to… -
Posted a reply to ECONNRESET when posting via XMLRPC or REST API, on the site WordPress.org Forums:
Sounds to me like WordPress is working fine, and you have a problem on your… -
Posted a reply to disabling commonly abused php functions, on the site WordPress.org Forums:
A Linux host that allows remote MySQL connections with shared hosting is IMO one that… -
Posted a reply to disabling commonly abused php functions, on the site WordPress.org Forums:
There is very little available in my.cnf that affects security. One notable setting is skip-networking,… -
Posted a reply to disabling commonly abused php functions, on the site WordPress.org Forums:
Is your host also blocking eval()? If not, it's pretty dumb to block those other… -
Posted a reply to disabling commonly abused php functions, on the site WordPress.org Forums:
You might want to check your PHP configuration and make sure the ffi extension is… -
Posted a reply to disabling commonly abused php functions, on the site WordPress.org Forums:
Disabling those functions serves no purpose if PHP has a modern configuration, and in addition,… -
Posted a reply to Problem with CRON, on the site WordPress.org Forums:
Well...there is an option that may work. You could set up a task in task… -
Posted a reply to Problem with CRON, on the site WordPress.org Forums:
Is there a way to whitelist HTTP access from the "loopback" IP address? That would… -
Committed [2720884] to Plugins SVN:
fix broken markdown in readme -
Committed [2720878] to Plugins SVN:
update readme for 6.0 -
Posted a reply to Problem with CRON, on the site WordPress.org Forums:
Your original post never mentioned that you tried deactivating all plugins. :) If you have… -
Posted a reply to Problem with CRON, on the site WordPress.org Forums:
Since your question is plugin-related and not really WordPress-related, you should probably post your support… -
Posted a reply to How could I install a plugin or theme programatically?, on the site WordPress.org Forums:
This should be of some assistance for creating a custom endpoint: https://developer.wordpress.org/rest-api/extending-the-rest-api/adding-custom-endpoints/ -
Posted a reply to How could I install a plugin or theme programatically?, on the site WordPress.org Forums:
Are you aware that using the REST API for administrative tasks requires an authorization header… -
Posted a reply to How could I install a plugin or theme programatically?, on the site WordPress.org Forums:
The WordPress REST API reference may be of some help: https://developer.wordpress.org/rest-api/reference/plugins/ -
Posted a reply to What Server Resources Involved in WP Admin Processes?, on the site WordPress.org Forums:
The WP update process goes like this: 1) download the update package 2) un-zip the… -
Posted a reply to What Server Resources Involved in WP Admin Processes?, on the site WordPress.org Forums:
The Xeon Gold CPU supports a much richer instruction set than the E3-1230 and has… -
Posted a reply to How to dynamically generate custom meta name, on the site WordPress.org Forums:
And based on the user's "research and fiddling" and how they "stumbled upon" code, this… -
Committed [2718977] to Plugins SVN:
update readme for 6.0 -
Posted a reply to Can’t get value from the_title();, on the site WordPress.org Forums:
Have you tried get_the_title() ? https://developer.wordpress.org/reference/functions/get_the_title/ Please note that get_the_title() only works from within "the… -
Posted a reply to Problem after changing web host name servers, on the site WordPress.org Forums:
Using your terms, you moved WordPress from Company "B" to company "C" -- so the… -
Posted a reply to How to display Custom Meta Field Key and Value when using array, on the site WordPress.org Forums:
I think the following code within the foreach() loop would do what you want. Adjust… -
Posted a reply to How to display Custom Meta Field Key and Value when using array, on the site WordPress.org Forums:
The code can be further condensed because the $post variable is created by the the_post()… -
Posted a reply to How to display Custom Meta Field Key and Value when using array, on the site WordPress.org Forums:
You're on the right track. The following should do what you want: $cpmf = array(… -
Posted a reply to How to display Custom Meta Field Key and Value when using array, on the site WordPress.org Forums:
Based on the code you provided, the $cpmf array makes no sense, and this would… -
Posted a reply to PHP Deprecated, on the site WordPress.org Forums:
The message is self-explanatory. This line: $comment .= '<!– Attachment IDs: ' . implode( $ids,… -
Posted a reply to Protect queries against SQL injection, on the site WordPress.org Forums:
ALL fields submitted from a form should be sanitized before entering into the database. For… -
Posted a reply to WordPress 5.9.3 wp_config and .htaccess error, on the site WordPress.org Forums:
This is the line in .htaccess that must be changed: AddHandler application/x-httpd-alt-php56___lsphp .php If your… -
Posted a reply to Working way to make 301 redirect for 200 thousand urls?, on the site WordPress.org Forums:
You will not be able to redirect more than a few hundred individual URLs in… -
Posted a reply to Migrating users with hashed password, on the site WordPress.org Forums:
Depending on the hashing algorithm used, your hashed passwords might automatically work in WordPress. If… -
Posted a reply to Media library search is slow with 112k images, on the site WordPress.org Forums:
WordPress stores media data in its database as post data, and the DB tables for… -
Posted a reply to Unknown Column ‘0’ in where clause, on the site WordPress.org Forums:
According to the documentation, the $format array should be immediately after the $where array. I… -
Posted a reply to Unknown Column ‘0’ in where clause, on the site WordPress.org Forums:
I suggest that you take a look at the $wpdb->update() documentation: https://developer.wordpress.org/reference/classes/wpdb/update/ You are missing… -
Posted a reply to Extreme resources usage on a VPS, on the site WordPress.org Forums:
I suggest checking whether you have a spambot problem. If the results of the check… -
Posted a reply to define(‘DISALLOW_FILE_EDIT’, true);, on the site WordPress.org Forums:
The first line in the wp-config.php file should contain <?php and nothing else. I suspect… -
Posted a reply to Fix WordPress Theme editor Scrape key check failed error, on the site WordPress.org Forums:
WordPress does extra checking when editing an active theme, so unfortunately, that doesn't change anything.… -
Posted a reply to WordPress database error Illegal mix of collations, on the site WordPress.org Forums:
OK, let's try this. When displaying the database in phpMyAdmin, you will see a list… -
Posted a reply to WordPress database error Illegal mix of collations, on the site WordPress.org Forums:
The issue here is likely at the column level, not the table level. You should… -
Posted a reply to Fix WordPress Theme editor Scrape key check failed error, on the site WordPress.org Forums:
Based on what you wrote, I suspect the new VPS is using a different/newer version… -
Posted a reply to PHP Warning: Use of undefined constant STYLESHEETPATH, TEMPLATEPATH, on the site WordPress.org Forums:
Yup, the Kadence theme and GeoDirectory plugin are the likely suspects. You might want to… -
Posted a reply to PHP Warning: Use of undefined constant STYLESHEETPATH, TEMPLATEPATH, on the site WordPress.org Forums:
If you are running Linux and have console/SSH access, you could go to the directory… -
Posted a reply to PHP Warning: Use of undefined constant STYLESHEETPATH, TEMPLATEPATH, on the site WordPress.org Forums:
Do you see this warning on every page load, or is it intermittent? If it's… -
Posted a reply to Cyrillic characters evade WordPress Disallowed Comment Keys, on the site WordPress.org Forums:
Hmm...so it is. I thought that option was called Comment Blacklist, but I guess the… -
Posted a reply to Cyrillic characters evade WordPress Disallowed Comment Keys, on the site WordPress.org Forums:
I think you should ask your question in the support area for whatever plugin added… -
Posted a reply to Error establishing a database connection, on the site WordPress.org Forums:
If this happened while you were installing WordPress, or if you or your host recently… -
Posted a reply to Newly discovered company site – how to edit?, on the site WordPress.org Forums:
One would think that someone in your company has the information you need to access…