Viewing 15 replies - 1 through 15 (of 16 total)
  • Hello
    I Have the same problem ??

    In fact the family_data folder is not create in plugin folder. But i dont know why ?????

    also errors here:

    Warning: fopen(#####/public_html/wp-content/plugins/family-tree//family_data/family_13.json) [function.fopen]: failed to open stream: No such file or directory in /#####/public_html/wp-content/plugins/family-tree/includes/custom-meta-box.php on line 466
    Cannot open file (/#####/public_html/wp-content/plugins/family-tree//family_data/family_13.json)

    also, is this plugin also used here: https://www.chehebar.com/new/

    i like this webpage.

    Also getting these error/warning whenever I try to save any of the pages related to the plugin.

    Hello support…
    or reaction please?

    I think i found the error ??

    check the plugin uploads in wp-content/plugins
    open includes folder and open the file custom-meta-box.php in your text editor

    check line 457 and remove the / before family_data so it looks like

    $filename = $dir.'family_data/family_'.$family_id.'.json';

    Now create in the family- tree directory a directory and name it family_data
    Seems to work now for me.

    And yes Qbone…. it seems like it is the chehebar family tree, without the Menu buttons.
    While playing around with it I can’t get the relationships connected between both parents and a child, it only connects from the father… seems like we have another problem there.

    I hope the author checks the support forums, otherwise someone else might help with that

    I’m sorry about the last part in my previous post. When the tree is expanded with more people instead of 3 it connects …. so i think the problem solved for now, hopefully the author will correct this small error soon ??

    Where is the developer?????

    Still nothing from the developer. I tested to create a tree with the solution I posted earlier, but every tree I create doesnt show up the correct colors for Male and Female. I dont know if someone got this plugin working, but would love to get some more detailed instructions how to fix this problem.

    same here, plugin is still buggy.
    maybe developer is on vacation ??

    did someone find another good family tree plugin or website?

    it looks promising, but buggy as hell. Pascalram, how did you get it to even show the tree? no matter what I do, I keep getting “John Doe’s Family formation is not completed yet”. Thanks for any pointers..

    Pascalram

    (@pascalram)

    Hey Iebonze did you try making 3 generations with correct settings…

    I’d suggest make a simple tree with

    ….GrandParents P1 married P2
    …..Child C1 child of P1(create a female for C1 and set relation to married husband wife)
    …..grandchild GC1 child of C1 & C2… try it out and hope it works… otherwise ill try to help out in another way

    lebonze

    (@lebonze)

    Thanks Pascalram, I did manage to see the tree in the end! Although this is still just too buggy and convoluted. Might need to look somewhere else / write something from scratch..

    I see a blank page with the zoom in, zoom out and reset. But nothing happens. Why is it so?

    Just a quick fix:

    At the bottom of “includes/custom-meta-box.php”; wrap the fopen thing in condition to perform check if file in that path exist like this;

    if (file_exists($filename)) {
    
            if (!$handle = fopen($filename, 'w+')) {
    
                echo "Cannot open file ($filename)";
    
                die;
    
            }
    
            // Write $somecontent to our opened file.
    
            if (fwrite($handle, $somecontent) === FALSE) {
    
                echo "Cannot write to file ($filename)";
    
                die;
    
            }
    
            fclose($handle);
    
        }

    Hope this might help someone out there.

Viewing 15 replies - 1 through 15 (of 16 total)
  • The topic ‘error with create family tree’ is closed to new replies.