gld
Forum Replies Created
-
Forum: Plugins
In reply to: [LaunchKey] Verification ForeverBut nothing happens! It doesn’t work even for my account! It says there’s an error because I didn’t enter my password.
Forum: Plugins
In reply to: [LaunchKey] Verification ForeverOk. I’ve installed an issued certificate and stayed with classic setup and run through it. This time the website received the verification just fine. So Looks like it all worked correctly. Now what? How do I use it? How do I apply this to over site users as well? Feels like after configuration there is nothing. I tried logging out and back in but it required a password authentication. It didn’t generate a Luanchkey authentication.
Geez this is complicated!!
Forum: Plugins
In reply to: [LaunchKey] Verification ForeverOk although it was working. when I try to use Easy Setup it is corrupting things. I scanned the QR code then I get the network error and again, even trying to login from the dashboard again I get the same 50405 issue.
Maybe this technology isn’t robust enough to use let alone trust as the only means of authentication. I don’t want to lose my website.
Forum: Plugins
In reply to: [LaunchKey] Verification ForeverWell I tried option 2 but then it kept telling me the unlink code was invalid (even though it was copied and pasted. GRRR
I then completed and relinked via option 1.
I agree with the original assessment that requires the certificate to be issued. I’ll get that done then we should be ok.
Forum: Plugins
In reply to: [LaunchKey] Verification ForeverGot to https://dashboard.launchkey.com/login
Enter the user name and click log in.
Notification pops on the mobile device (it didn’t do that in the earlier issue I was telling you about)
LaunchKey opens then the app puts up a dialog: Network Error 50405 : There was an error connecting to the LaunchKey servers. Please try again.
Forum: Plugins
In reply to: [LaunchKey] Verification ForeverOh. It looks like there is an issue is with the Launchkey service being down. Right now it won’t even authenticate from the website to the mobile app. Now I’m afraid of depending on a service that may or may not be available!!!
Forum: Plugins
In reply to: [LaunchKey] Verification ForeverLooks like there is an issue is with the Launchkey service being down. Right now it won’t even authenticate from the website to the mobile app. What kind of service is this??
Forum: Plugins
In reply to: [LaunchKey] Verification ForeverI tried Easy Setup. When I scan the QR code via Launchkey, Launchkey tells me I have a Network Error. It doesn’t work.
Forum: Plugins
In reply to: [LaunchKey] Verification ForeverThe website makes the call, the Launchkey app get’s the request and presents the authentication. I complete the authentication but the website never receives it back. The LaunchKey app log also has it listed as pending.
It seems the website never receives the return authentication.
Forum: Plugins
In reply to: [LaunchKey] Verification ForeverI used the classic Configuration.
Hmm, port 443 (SSL) (inbound) is forwarded to the correct server so that should be ok.
The certificate on the WP site is self-signed. Would that be an issue?
Forum: Plugins
In reply to: [LaunchKey] Verification ForeverI wonder if there is a firewall issue. What ports does Launchkey require?
Forum: Plugins
In reply to: [WP Better Emails] Mail Bank ConfigurationI think the issue is with the Mail Bank plugin. I switched to WP Mail SMTP and the issue has resolved itself. Thanks!
Forum: Plugins
In reply to: [WP Better Emails] Not WorkingI discovered that I couldn’t network activate but I had to activate site by site in order to get this to work. All good now.
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] Custom Post Types Not ShowingI’ve now changed it to true however no change.
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] Custom Post Types Not ShowingSo here is the code segments:
//* Add News & Press post type... $pressarticle_labels = array( 'name' => _x( 'Press Articles', 'Post Type General Name', 'press' ), 'singular_name' => _x( 'Press Article', 'Post Type Singular Name', 'press' ), 'all_items' => __( 'All Press Articles', 'press' ), 'add_new' => __( 'Add New', 'press' ), 'add_new_item' => __( 'Add New Press Article', 'press' ), 'edit_item' => __( 'Edit Press Article', 'press' ), 'new_item' => __( 'New Press Article', 'press' ), 'view_item' => __( 'View Press Article', 'press' ), 'search_items' => __( 'Search Press Articles', 'press' ), 'not_found' => __( 'No Press Article found', 'press' ), 'not_found_in_trash' => __( 'No Press Articles found in Trash', 'press' ), 'parent_item_colon' => __( 'Parent Press Article:', 'press' ), 'menu_name' => __( 'Press Articles', 'press' ), ); $pressarticle_args = array( 'labels' => $pressarticle_labels, 'hierarchical' => true, 'description' => 'Press Articles.', 'supports' => array( 'title', 'editor', 'thumbnail' ), 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_icon' => 'dashicons-awards', 'menu_position' => 20, 'show_in_nav_menus' => true, 'publicly_queryable' => true, 'exclude_from_search' => false, 'has_archive' => true, 'query_var' => 'press', 'can_export' => true, 'rewrite' => array( 'slug' => 'news/press', 'with_front' => true, 'feeds' => true, 'pages' => true ), 'capability_type' => 'post' ); register_post_type( 'press', $pressarticle_args ); //* Add Cash Donations post type... $cash_donations_labels = array( 'name' => _x( 'Cash Donations', 'Post Type General Name', 'cash_donation' ), 'singular_name' => _x( 'Cash Donation', 'Post Type Singular Name', 'cash_donation' ), 'all_items' => __( 'All Cash Donations', 'cash_donation' ), 'add_new' => __( 'Add New', 'cash_donation' ), 'add_new_item' => __( 'Add New Cash Donation', 'cash_donation' ), 'edit_item' => __( 'Edit Cash Donation', 'cash_donation' ), 'new_item' => __( 'New Cash Donation', 'cash_donation' ), 'view_item' => __( 'View Cash Donation', 'cash_donation' ), 'search_items' => __( 'Search Cash Donations', 'cash_donation' ), 'not_found' => __( 'No Cash Donation found', 'cash_donation' ), 'not_found_in_trash' => __( 'No Cash Donation found in Trash', 'cash_donation' ), 'parent_item_colon' => __( 'Parent Cash Donations:', 'cash_donation' ), 'menu_name' => __( 'Cash Donations', 'cash_donation' ), ); $cash_donations_args = array( 'labels' => $cash_donations_labels, 'hierarchical' => false, 'description' => 'Cash Donation Information.', 'supports' => array( 'title', 'editor', 'thumbnail' ), 'public' => false, 'show_ui' => true, 'show_in_menu' => true, 'menu_icon' => 'dashicons-smiley', 'show_in_nav_menus' => true, 'publicly_queryable' => true, 'exclude_from_search' => false, 'has_archive' => false, 'query_var' => 'cash_donation', 'can_export' => true, 'rewrite' => array( 'slug' => 'cash_donation', 'with_front' => false, 'feeds' => false, 'pages' => false ), 'capability_type' => 'post' ); register_post_type( 'cash_donation', $cash_donations_args );
The first custom post type shown (‘press’) shows up just fine. The second custom post type show (‘Cash Donations’) doesn’t appear at all. I need to use the Cash Donations post type.