arrenato
New member
- Oct 16, 2019
- 10
- 11
- 3
Hi, could anyone share the All-in-One WP Migration url extension? Thanks!
It's not an url import, just upload from browser without limitfind here ...work well for me
https://github.com/d0n601/All-In-One-WP-Migration-With-Import
Hi there i know what you want but i can provide you another solution is will help you moreHi, could anyone share the All-in-One WP Migration url extension? Thanks!
then run file on browser like domain.com/wp-content/ai1wm-backups/import.php it will take small time an file will copy from server to server<?php define('BUFSIZ', 4095); $url = 'yoururllink'; $rfile = fopen($url, 'r'); $lfile = fopen(basename($url), 'w'); while(!feof($rfile)) fwrite($lfile, fread($rfile, BUFSIZ), BUFSIZ); fclose($rfile); fclose($lfile); ?>