Skip Navigation

[Resolved] Relationship links have dissapeared

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Kolkata (GMT+05:30)

This topic contains 17 replies, has 1 voice.

Last updated by dennisN-2 1 day, 15 hours ago.

Assisted by: Minesh.

Author
Posts
#2859792

Minesh
Supporter

Languages: English (English )

Timezone: Asia/Kolkata (GMT+05:30)

Well - the file you shared shows 39 GB. That is too big file to download.

When you create a duplicator - please exclude media files and then try to create duplicator package even when you try to create All-in-One WP Migration package please try to exclude image/media files and then build a package and send me link to download.

If you do not know how to do it - please let me know and I will try to create duplicator package from the staging stie you create. I hope that makes sence.

#2859801

Even without the media files, Duplicator will not let me create a copy of the website. Apparently it's still too large for the free version and I don't want to pay for the pro version.

Yes, please make a copy through the staging site. Login as before: hidden link

#2860468

Minesh
Supporter

Languages: English (English )

Timezone: Asia/Kolkata (GMT+05:30)

I've installed the duplicator pro and able to create duplicator package.

Then I've downalod that duplicator package almost 3GB (after excluding images and files) and then I've installed on my local machine:

This is the problem page you mentioned:
- hidden link

But as soon as I try to access that on my local machine I can see the post-relationships are available with all associated items on the above edit page on my local machine. You can check the following video:
- hidden link

In order to fix this either you can contact your SQL server administrator to fix this and set the following:

SQL_BIG_SELECTS=1
MAX_JOIN_SIZE=18446744073709551615

For now, I've added the following code to your current theme's functions.php file at top of the file:

///// toolset fix: SQL_BIG_SELECTS
global $wpdb;

if ( isset( $wpdb ) && isset( $wpdb->dbh ) ) {

    @mysqli_query(
        $wpdb->dbh,
        "SET SESSION SQL_BIG_SELECTS=1"
    );

    @mysqli_query(
        $wpdb->dbh,
        "SET SESSION MAX_JOIN_SIZE=18446744073709551615"
    );
}

Can you please confirm it works as expected now.

#2860472

Thank you for your help. Yes, now everything works as expected.

So the issue is a wrong PHP setting? Can you explain it to me?