Viewing 15 replies - 1 through 15 (of 40 total)
  • Hello,

    at first i thought it was my blame….and looking for since 2 hours for the bug…

    i have the same problem.

    Same problem with my site: http://carolinaepicurean.com

    When will come an update ???

    same problem for my site: http://www.laprogressive.com

    df

    (@davidfewgmailcom)

    Same issue with our site.
    After update to WordPress 3.5.2 the contents of the ‘Image URL’ field in the Dynamic Content Gallery Metabox doesn’t seem to save on post publish/update.
    Have tested using full and partial URLs and doesn’t seem to save.

    help me! i have the same problem. I use full url method & have to insert the dcg image url for a post everytime. I can enter the url on the DCG metabox but when i press ‘update’ for the post, the url is not there & my dcg on the front end is black!

    df

    (@davidfewgmailcom)

    As a workaround have a look into setting up default images for posts…

    http://www.studiograsshopper.ch/dynamic-content-gallery/documentation/
    ‘Docs – How to name and organise your default images’

    This will at least replace the black error message you receive in the dynamic content gallery for each new post until there is a fix.

    When will come an update? I need it for my page…

    Same problem. After update to WordPress 3.5.2 the contents of the ‘Image URL’ field in the Dynamic Content Gallery Metabox doesn’t save on post publish/update. I worked around for one post by setting the relevant image as the default. However, I have no idea what to do for subsequent posts. Please advise.

    Same here. Full image method not working. I have a multi-site and it has to pull from a subdomain so default images doesn’t work from main site.

    Same issue here. This has pretty much brought us to a standstill as our entire website is based on the posts that display in the slideshow. Does anyone know of a comparable slider that we can switch to? Doesn’t seem like the support is too great for DCG 🙁

    Me too!

    As a temporary fix, while Studiograsshopper resolves the main problem, I was able to screenshot the desired photo (not necessary if you have the image to upload), upload it, go to edit post, select featured image, and go to DCG settings>Image Management and select Auto.

    I think the issue is in dfcg-admin-metaboxes.php: dfcg_save_metabox_data is checking the value of isset($_POST[‘dfcg_metabox_noncename’]) instead of the nonce itself. This patch should fix it:

    --- dfcg-admin-metaboxes.php    2010-12-09 14:43:52.000000000 -0600
    +++ dfcg-admin-metaboxes.php.new        2013-06-25 21:11:07.000000000 -0500
    @@ -215,7 +215,7 @@
     function dfcg_save_metabox_data($post_id, $post) {
    
            // Check referrer is from DCG metabox
    -       if ( !wp_verify_nonce( isset($_POST['dfcg_metabox_noncename']), DFCG_FILE_HOOK )) {
    +       if ( !isset($_POST['dfcg_metabox_noncename']) || !wp_verify_nonce( $_POST['dfcg_metabox_noncename'], DFCG_FILE_HOOK )) {
            return $post->ID;
            }

    So, how do I apply this patch?

    Doc

Viewing 15 replies - 1 through 15 (of 40 total)
  • The topic ‘DCG is not working after updating wordpress 3.5.2.’ is closed to new replies.