Forum Replies Created

Viewing 15 replies - 1 through 15 (of 27 total)
  • @22halomedia Which workaround if I may ask?

    Thread Starter DJF3

    (@djf3)

    Thanks for the info @guido07111975 !

    Thread Starter DJF3

    (@djf3)

    Ok, I got a bit further:
    Test 1: get_post_meta($post->ID, ‘wp_jv_post_rg’, false);
    seems empty..

    Test 2: get_post_meta($post->ID);
    displays all post metadata except for ‘wp_jv_post_rg’ ?

    When viewing the WP database I do see
    – ‘classic-editor-remember’
    – ‘_edit_lock’
    – ‘_edit_last’
    – ‘wp_jv_post_rg’

    but the ‘wp_jv_post_rg’ metadata record is not shown when writing all post_meta to a file ??

    Thread Starter DJF3

    (@djf3)

    Found it! Searching for an hour: failed. Asked question here, searched again and found it within 1 minute 🙂

    “taxonomy: category/7” (where 7 is the post category id)

    Thread Starter DJF3

    (@djf3)

    @mrbishopeee
    Yes.
    However, this script is using the Tropo platform which is not taking new customers anymore.
    To develop something like this, you may want to reach out to the Webex Developer community to get some more thoughts & ideas.
    Cisco Developer Community
    I guess that you could develop something like this with IVR applications, depending on what exactly you want to accomplish.
    You would also have to think about
    – security (pin required for meetings)
    – fixed groups of people? How do you define which people need to be on the call?
    – fixed meetings?
    – what time would you call out to the participants

    Also check out the support options on this page: https://developer.webex.com/support (feel free to create a Webex Teams account and join the excellent “#webex4devs” space)

    If you have more questions, please reach out to me by adding an ‘issue’ to my Github repo. (to keep this WordPress forum clean 🙂

    DJF3

    (@djf3)

    When checking for PHP 7.2 compatibility I also get the following messages:

    FILE: /home/username/domain/wp-content/plugins/broken-link-checker/core/core.php
    ——————————————————————————–
    FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
    ——————————————————————————–
    957 | WARNING | Function create_function() is deprecated since PHP 7.2; Use an anonymous function instead
    ——————————————————————————–

    FILE: /home/username/domain/wp-content/plugins/broken-link-checker/includes/utility-class.php
    ——————————————————————————–
    FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
    ——————————————————————————–
    42 | WARNING | INI directive ‘safe_mode’ is deprecated since PHP 5.3 and removed since PHP 5.4
    ——————————————————————————–

    FILE: /home/username/domain/wp-content/plugins/broken-link-checker/modules/checkers/http.php
    ——————————————————————————–
    FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
    ——————————————————————————–
    147 | WARNING | Function create_function() is deprecated since PHP 7.2; Use an anonymous function instead
    ——————————————————————————–

    Thread Starter DJF3

    (@djf3)

    Thank you for your quick response!

    Q: Is “access to wp-login.php” blocked after “Max failed login attempts per IP address”?

    I just tested:
    – Login as admin: working
    – Incognito browser: login as test user with wrong password: the wrong password appears in the log
    – Incognito browser: login as test user with good password: login OK

    It seems that the pwd is logged every time a user enters the wrong password.
    (status login/failed or login/limited)

    Q: What does result “limited” mean? (and could I have found this information somewhere?)

    Thread Starter DJF3

    (@djf3)

    So sorry for the many updates, but just wanted to let you know that a membership deny does work well and the user received the email within a second after I clicked deny.

    [ Please do not bump. ]

    Thread Starter DJF3

    (@djf3)

    BTW, I just commented out the line causing this error and a different error appears:

    And this function “bp_is_active()” does not appear to be defined in any of the bp-reg-options plugin.

      [05-Apr-2018 21:57:34 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function bp_is_active() in /home/username/mydomain.com/wp-content/plugins/bp-registration-options/includes/core.php:128
      Stack trace:
      #0 /home/username/mydomain.com/wp-includes/class-wp-hook.php(286): bp_registration_options_bp_core_register_account(11)
      #1 /home/username/mydomain.com/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(NULL, Array)
      #2 /home/username/mydomain.com/wp-includes/plugin.php(453): WP_Hook->do_action(Array)
      #3 /home/username/mydomain.com/wp-includes/user.php(1773): do_action('user_register', 11)
      #4 /home/username/mydomain.com/wp-includes/user.php(2034): wp_insert_user(Array)
      #5 /home/username/mydomain.com/wp-includes/user.php(2409): wp_create_user('usertest9', 'vGlCsvY7z5te', 'dirkjanu+userte...')
      #6 /home/username/mydomain.com/wp-login.php(784): register_new_user('usertest9', 'dirkjanu+userte...')
      #7 {main}
        thrown in /home/username/mydomain.com/wp-content/plugins/bp-registration-options/includes/core.php on line 128
    Thread Starter DJF3

    (@djf3)

    Just downloaded all plugin files and the function

      bp_core_process_spammer_status

    only appears to be in file ‘admin.php’.

    When checking the github repo I notice the same thing.
    ?

    Thread Starter DJF3

    (@djf3)

    Haha, I agree.
    So I was able to turn on some logging and this is the result:

    [05-Apr-2018 21:33:13 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function bp_core_process_spammer_status() in /home/username/mydomain.com/wp-content/plugins/bp-registration-options/includes/admin.php:270
    Stack trace:
    #0 /home/username/mydomain.com/wp-includes/class-wp-hook.php(286): bp_registration_options_form_actions('')
    #1 /home/username/mydomain.com/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(NULL, Array)
    #2 /home/username/mydomain.com/wp-includes/plugin.php(453): WP_Hook->do_action(Array)
    #3 /home/username/mydomain.com/wp-admin/admin.php(156): do_action('admin_init')
    #4 {main}
      thrown in /home/username/mydomain.com/wp-content/plugins/bp-registration-options/includes/admin.php on line 270
    Thread Starter DJF3

    (@djf3)

    Hello Edanzer,
    Apologies for not getting back, It has been extremely busy. Really appreciate your follow-up and suggestions! Hope to have a bit more time soon.
    DJ

    Thread Starter DJF3

    (@djf3)

    Hi Camu,

    Don’t knnow if I can find the time to create a comparison, having issues extracting “exporting” data (webpage does not exist)..

    Why would a comparison be of interest to you?
    (statpress is dead so no option anyway?)

    Cheers
    DJ

    Thread Starter DJF3

    (@djf3)

    You’re right.. No new versions since 2010. I’ll remove statpress and try slimstat! Thank you for the pointer.
    DJ

    Thread Starter DJF3

    (@djf3)

    Anyone?

Viewing 15 replies - 1 through 15 (of 27 total)