Answer the question
In order to leave comments, you need to log in
How to edit a file from another site?
Hello.
I have 2 wordpress sites.
On one (test1.ru) there is a text.csv file.
I can open it, write to it.
I also need to open this file from the site (subdomain) and edit it
(dir.test1.ru)
<?php
$direct = "http://test1.ru/text.csv";
$file = fopen ($direct, "r");
if (!$file) {
echo "<p>Невозможно перезаписать удаленный файл.\n";
exit;
}
$data = fgetcsv($file);
$number = implode("",$data);
fclose($file);
?>
Answer the question
In order to leave comments, you need to log in
Refer to the file by absolute path
if they are on the same server.
Or by ftp
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question