• Hello – I have the updated plugin (most recent version) of NextGEN.
    Here are 2 gallery pages:
    A: https://www.kiteastman.com/katazome/
    and
    B: https://www.kiteastman.com/autumnal/

    A works the way I want it to. I click any image and get the overlay with the image browser (is that the right term?)

    B has identical options but only clicks to the image file, to the browser. When I tried to re-insert the gallery via the wysiwyg tool in the admin page editor, upon trying to select the gallery, the system wheel just kept spinning forever and no options were selected. I can’t figure this out. ALso tried just typing in the command and nothing changed. I looked at my albums and they seem to be fine.

    Any ideas?

Viewing 11 replies - 31 through 41 (of 41 total)
  • Hi

    I’m fairly new to WP and nextGEN so apologies up front if this is “one of those” questions….

    How do I downgrade nextGEN to 1.6.2? I am currently on 1.7.2. I have tried searching for the instructions without success.

    Thanks

    Stephen

    I too have just gone back to 1.6.2 and everything is working once again

    @doggybag
    Please share how you went back. I am new to this and am fearful of trashing all my images and galleries by doing something incorrect.

    Thanks

    StephenC
    https://www.stephenc.co.za

    Problem still exist…nwe version WordPress, new version NextGEN…and still not work correctly

    [email protected]

    (@chrispopovicgmailcom)

    In the same boat as you guys. My site(s) are freaking paralyzed without this plugin working. Damn the man! So how does one downgrade from the latest version to one that works? Do my galleries go poof? How do I make sure all setting are OK? Please help!

    A workaround that works for me though is to simply copy and paste the [nggallery id=59] text from a previous post and replace the number with my new gallery id. In this case 59.

    Works for me.

    Cheers

    Stephen

    Any news in this case ? I have still this problem…

    Alex, have you anny idea about this bug ?

    Now I install version 1.8.0b2, menu still not work ! It isn`t possible ! ?? ??

    Hi all,

    I had the empty file problem and found a solution I want to share with you.

    Just change the code around line 249 of /xml/json.php from this:

    function render_output() {
    
    	if ($this->format == 'json') {
    		header('Content-Type: application/json; charset=' . get_option('blog_charset'), true);
    		$this->output = json_encode($this->result);
    
    	} else {
    		header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
    		$this->output  = "<?xml version='1.0' encoding='UTF-8' standalone='yes'?>\n";
    		$this->output .= "<nextgen-gallery>" . $this->create_xml_array( $this->result )  . "</nextgen-gallery>\n";
    	}	
    
    }
    
    /**
     * PHP5 style destructor and will run when the class is finished.
     *
     * @return output
     */
    function __destruct() {
    	echo $this->output;
    }

    to this:

    function render_output() {
    
    	if ($this->format == 'json') {
    		header('Content-Type: application/json; charset=' . get_option('blog_charset'), true);
    		$this->output = json_encode($this->result);
    
    	} else {
    		header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
    		$this->output  = "<?xml version='1.0' encoding='UTF-8' standalone='yes'?>\n";
    		$this->output .= "<nextgen-gallery>" . $this->create_xml_array( $this->result )  . "</nextgen-gallery>\n";
    	}	
    
        echo $this->output;
    }
    
    /**
     * PHP5 style destructor and will run when the class is finished.
     *
     * @return output
     */
    function __destruct() {
    
    }

    It worked for me. Let me know if this is helpful.

    Thank You very much ! Worked ! Alex, what do you think about this ?

Viewing 11 replies - 31 through 41 (of 41 total)
  • The topic ‘[Plugin: NextGEN Gallery] Bug in wysiwyg dialog to insert gallery/album/ etc.?’ is closed to new replies.