Jesse Graupmann
Forum Replies Created
-
Forum: Plugins
In reply to: [Debug Meta Data] User meta incorrectly showing current logged-in userLooks like you might be able to adjust this line: https://github.com/ahmadawais/Debug-Meta-Data/blob/master/debug-meta-data.php#L99
From:
$dmd_user_meta = get_user_meta( get_current_user_id() );
to something like:
$dmd_user_meta = get_user_meta( $user->id );
Adding
FS_METHOD
towp-config.php
solved the issues I was having.// worked define('FS_METHOD','direct');
At first I went the route of FTP user, but locking the user access to a subdirectory broke again as the plugin kept requesting an absolute path no matter what. Even adding the paths in the config did not help in my case.
// updating paths did not help define( 'FTP_BASE', '/path/to/wordpress/' ); define( 'FTP_CONTENT_DIR', '/path/to/wordpress/wp-content/' ); define( 'FTP_PLUGIN_DIR ', '/path/to/wordpress/wp-content/plugins/' ); define( 'FTP_USER', 'username' ); define( 'FTP_PASS', 'password' ); define( 'FTP_HOST', 'ftp.example.org' ); define( 'FTP_SSL', false );
Thanks
Forum: Plugins
In reply to: [Relative URL] Homepage not working with ngrokI get this error on the homepage but it seems to work.
Notice: ob_end_flush(): failed to delete and flush buffer. No buffer to delete or flush in /vagrant/site/wp-content/plugins/relative-url/relative-url.php on line 133
Unfortunately it doesn’t seem to work with multisite.
Forum: Plugins
In reply to: [Relative URL] Homepage not working with ngrokJust for some context: https://ngrok.com/faq#wordpress
Forum: Plugins
In reply to: [dsIDXpress] SSL compatibility?Hey Lindz,
Just checking in to see if you’ve made progress on SSL support. If not, I would recommend adding to your
Important requirements to use this plugin
that; you must have an insecure connection.Forum: Plugins
In reply to: [dsIDXpress] SSL Compatibility@wpmuguru – Looks like https://cdn1.diverse-cdn.com/ is setup for HTTPS. Maybe relative protocols for CDN urls could help now.
Forum: Plugins
In reply to: [dsIDXpress] SSL compatibility?Hello,
Any chance you can upgrade https://api-b.idx.diversesolutions.com/api/ ? Looks like https://cdn1.diverse-cdn.com/ already supports HTTPS so you could nix the
Mixed Content
warnings in the admin dashboard when usingdefine( 'FORCE_SSL_ADMIN', true );
. Maybe just use relative protocol in cases where you know it’s supported?//resource.com
.It’s worth noting you can get free SSL from https://letsencrypt.org/ these days.
For the record, is http://forum.diversesolutions.com/forums/9-Community-Questions-amp-Answers a better place to ask these types or questions?
Thanks
Forum: Plugins
In reply to: [Cimy User Manager] Support For Custom FieldsNo. I only asked for someone else who seemed to retract their original question and it doesn’t look like there has been any response in almost a full year.
Sorry.
Forum: Plugins
In reply to: [iThemes Security (formerly Better WP Security)] $confix->get_error_code()$confix is never defined.
Forum: Plugins
In reply to: [Theme Check] WP-CLI support?Thanks. That’s good to know.
Forum: Plugins
In reply to: [Theme Check] WP-CLI support?Is there a rough timeline for that? Or is it whenever you get free time?
Forum: Plugins
In reply to: [Query Monitor] WP CLI Activation Doesn't seem to attach the admin menuNote: this was marked as a duplicate of #142.
I just recently started started using WP_CLI and I’ve experienced the same issue. I’ve managed to fix it with the code below. Is there a reason this isn’t used or hasn’t been tried before?
if ( 'cli' === php_sapi_name() && ! defined( 'QM_TESTS' ) ) { # For the time being, let's not load QM when using the CLI because we've no persistent storage and no means of # outputting collected data on the CLI. This will hopefully change in a future version of QM. if( defined('WP_CLI') && WP_CLI ){ // you shall pass ... } else { return; } }
vagrant@username:/vagrant/site$ wp plugin activate query-monitor Success: Plugin 'query-monitor' activated. vagrant@username:/vagrant/site$ wp plugin deactivate query-monitor Success: Plugin 'query-monitor' deactivated.
Forum: Plugins
In reply to: [Polylang] WP-CLI to create new post linked to all translationsGreat! Thanks again Chouby.
Forum: Plugins
In reply to: [Polylang] WP-CLI to create new post linked to all translationsAny chance you can give me a high-level view of what is required to associate two posts? Looks like their WP-CLI can set a language but… what is the core of linking two posts as translations?
Example: I have post ’20’ in ‘en’ and want to link ’21’ & ’22’ as ‘fr’ and ‘ko’ translations.
I’m hoping to make a method like http://wp-cli.org/commands/post/generate/
Thanks
Forum: Plugins
In reply to: [Polylang] WP-CLI to create new post linked to all translationsThanks Chouby!
I’ll check it out.