• Resolved PICHI1966

    (@josett225)


    Hi There,

    I have the lastest WordPress and Woocommerce installed and I am getting this error message quite often :
    2020/06/03 19:45:07 [error] 118372#118372: *578623 FastCGI sent in stderr: “PHP message: PHP Notice: Undefined index: action in /www/ridinfamily_458/public/wp-content/plugins/woo-order-status-per-product/admin/class-woo-order-status-for-items-admin.php on line 324PHP message: PHP Notice: Undefined index: post_type in /www/ridinfamily_458/public/wp-content/plugins/woo-order-status-per-product/admin/class-woo-order-status-for-items-admin.php on line 325” while reading response header from upstream, client: 91.166.105.227, server: https://www.ridin-family.com, request: “POST /wp-login.php?action=lostpassword HTTP/1.0”, upstream: “fastcgi://unix:/var/run/php7.4-fpm-ridinfamily.sock:”, host: “www.ridin-family.com”, referrer: “https://www.ridin-family.com/lost-password/”

    2020/06/03 19:02:42 [error] 118372#118372: *577672 FastCGI sent in stderr: “PHP message: PHP Notice: Undefined index: action in /www/ridinfamily_458/public/wp-content/plugins/woo-order-status-per-product/admin/class-woo-order-status-for-items-admin.php on line 324PHP message: PHP Notice: Undefined index: post_type in /www/ridinfamily_458/public/wp-content/plugins/woo-order-status-per-product/admin/class-woo-order-status-for-items-admin.php on line 325” while reading response header from upstream, client: 176.168.129.29, server: https://www.ridin-family.com, request: “GET /activation/wWl4cw6uwvUQVja4duwRWnwYMD1tjgbe/?key=wWl4cw6uwvUQVja4duwRWnwYMD1tjgbe HTTP/1.0”, upstream: “fastcgi://unix:/var/run/php7.4-fpm-ridinfamily.sock:”, host: “www.ridin-family.com”, referrer: “https://www.ridin-family.com/activation/wWl4cw6uwvUQVja4duwRWnwYMD1tjgbe/”

    Could you please help here?

    Thanks

    Jose

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Dotstore

    (@dots)

    Hello josett225,

    Thanks for reaching out to us.

    I think there is some issue during the action call.

    Please add below two link as mentioned and it will work.

    Line no: 324
    From: $custom_action = $_POST[‘action’];

    To: $custom_action = (isset(_POST[‘action’])) ? $_POST[‘action’] : ”;

    Line no: 325
    From: $custom_post_type = $_POST[‘post_type’];

    To: $custom_post_type = (isset($_POST[‘post_type’])) ? $_POST[‘post_type’] : ”;

    Let us know still if any.

    Thanks,

    Thread Starter PICHI1966

    (@josett225)

    Hello,

    Many thanks for the code and the quick update. For now the error message has disappeared.

    Thanks again

    Regards

    Jose

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Error Message in logs’ is closed to new replies.