Hi there,
The FTP is pointing to an empty folder, can’t check anything there. And sometimes, there is no way you can configure the timeout especially the environment (host) won’t allow it. The other way is editing the code to enforce it,
Please edit these files through FTP or your hosting’s File Manager
\wp-content\themes\x\framework\functions\global\admin\addons\demo\legacy\ajax-handler.php \wp-content\themes\x\framework\functions\global\admin\addons\demo\class-x-demo-import-session.php
Then go to line 139 and 39 and you should see wp_remote_get()
function. Edit those line and add more timeout in seconds, example, let’s add 15seconds, then
wp_remote_get( ..........., array( 'timeout' => 15 ) )
The result should be like these
$request = wp_remote_get( $_POST['demo'], array( 'timeout' => 15 ) );
for line 39
$request = wp_remote_get( $demo_url, array( 'timeout' => 15 ) );
for line 139
Increase the timeout whenever you like until the import works.
Thanks!