Viewing 13 Topics - 16 through 28 (of 28 total)
Author Posts
January 10, 2014 at 12:46 am 14270
JanMichael JanMichael

I’ve actually checked this video out before posting here. My issue seems to be that nothing is being requested to begin with. Nothing comes up in console. http://imgur.com/JfmLP8W

However when I turn ON debugging i’m getting a bunch of errors in my header:

Notice: register_uninstall_hook was called incorrectly. Only a static class method or function can be used in an uninstall hook. Please see Debugging in WordPress for more information. (This message was added in version 3.1.) in /home/jkl75311/public_html/wp-includes/functions.php on line 3049

Strict Standards: Declaration of WPUF_Walker_Category_Multi::start_el() should be compatible with Walker::start_el(&$output, $object, $depth = 0, $args = Array, $current_object_id = 0) in /home/jkl75311/public_html/wp-content/plugins/wp-user-frontend-pro/wpuf-functions.php on line 288

Strict Standards: Declaration of WPUF_Walker_Category_Checklist::start_lvl() should be compatible with Walker::start_lvl(&$output, $depth = 0, $args = Array) in /home/jkl75311/public_html/wp-content/plugins/wp-user-frontend-pro/wpuf-functions.php on line 327

Strict Standards: Declaration of WPUF_Walker_Category_Checklist::end_lvl() should be compatible with Walker::end_lvl(&$output, $depth = 0, $args = Array) in /home/jkl75311/public_html/wp-content/plugins/wp-user-frontend-pro/wpuf-functions.php on line 327

Strict Standards: Declaration of WPUF_Walker_Category_Checklist::start_el() should be compatible with Walker::start_el(&$output, $object, $depth = 0, $args = Array, $current_object_id = 0) in /home/jkl75311/public_html/wp-content/plugins/wp-user-frontend-pro/wpuf-functions.php on line 327

Strict Standards: Declaration of WPUF_Walker_Category_Checklist::end_el() should be compatible with Walker::end_el(&$output, $object, $depth = 0, $args = Array) in /home/jkl75311/public_html/wp-content/plugins/wp-user-frontend-pro/wpuf-functions.php on line 327

Strict Standards: Declaration of WPUF_Frontend_Form_Profile::submit_button() should be compatible with WPUF_Render_Form::submit_button($form_id, $form_settings, $post_id) in /home/jkl75311/public_html/wp-content/plugins/wp-user-frontend-pro/class/frontend-form-profile.php on line 410

Warning: Cannot modify header information – headers already sent by (output started at /home/jkl75311/public_html/wp-includes/functions.php:3049) in /home/jkl75311/public_html/wp-content/plugins/woocommerce/classes/class-wc-session-handler.php on line 63

January 10, 2014 at 9:38 pm 14290
JanMichael JanMichael

Can you offer any other solution?

January 10, 2014 at 11:59 pm 14294
Tareq Hasan Tareq Hasan

Seems like you are running PHP 5.4? It has some issues. I’ll give a fix for that.

January 11, 2014 at 1:04 am 14296
JanMichael JanMichael

Thank you – can you provide a timeframe? I have a client breathing down my neck.

January 11, 2014 at 3:06 am 14299
Tareq Hasan Tareq Hasan

Can you download the plugin again? I pushed a fix for the PHP 5.4 strict standards error. Should be ok now.

January 11, 2014 at 5:38 am 14303
JanMichael JanMichael

I downloaded vr 2.1.9 from the dashboard – this still hasnt’ fixed the issue.

January 12, 2014 at 3:18 am 14320
JanMichael JanMichael

Any further insight?

January 12, 2014 at 11:28 am 14321
Tareq Hasan Tareq Hasan

Please provide your site url, user login and password so we can check it. Also mark your reply as Private reply to keep it safe.

January 12, 2014 at 10:59 pm 14332
mostafamraafat mostafamraafat

Dear JanMichal,

I finally found a solution for the problem. Its because of the php Mail method which wp uses for sending mail. So i installed WP-Mail-SMTP Plugin and made my mail server SMTP and that made everything work.

Thank you 🙂

January 13, 2014 at 3:17 am 14338
JanMichael JanMichael

Tareq,

http://www.deadbeat911.com/
Username : test3
PW : test3

click the Edit button on this page http://www.deadbeat911.com/catering/test-complaint/

January 13, 2014 at 11:51 pm 14367
JanMichael JanMichael

I figured it out –

Deleted the if statement from line 292 in /class/front-form-post.php

 
            // find our if any images in post content and associate them
            if ( !empty( $postarr['post_content'] ) ) {
                $dom = new DOMDocument();
                $dom->loadHTML( $postarr['post_content'] );
                $images = $dom->getElementsByTagName( 'img' );

                if ( $images->length ) {
                    foreach ($images as $img) {
                        $url = $img->getAttribute( 'src' );
                        $url = str_replace(array('"', "'", "\\"), '', $url);
                        $attachment_id = wpuf_get_attachment_id_from_url( $url );

                        if ( $attachment_id ) {
                            wpuf_associate_attachment( $attachment_id, $post_id );
                        }
                    }
                }
            }
January 14, 2014 at 3:50 pm 14383
Tareq Hasan Tareq Hasan

Aah, didn’t have a clue about this one. Glad to know it solved your problem.

January 14, 2014 at 7:31 pm 14392
Tareq Hasan Tareq Hasan

Can you download the plugin again? I pushed a fix for the PHP 5.4 strict
standards error. Should be ok now.

Viewing 13 Topics - 16 through 28 (of 28 total)