Как такое реализовать?
Совершено два одинаковых скрипта, с разными доменами..
Цель: Вывод фото на два сайта, с одной папки первого сайта, и загрузка фото с двух сайтов в одну папку первого сайта. "дабы не забить сервак копиями фото"
Если такое возможно...?
Фреймворк Codeigniter
есть некий код:
// Check if the directory already exists
if (!file_exists("./uploads/photos/" . $user_id . "/")) {
mkdir("./uploads/photos/" . $user_id . "/");
mkdir("./uploads/photos/" . $user_id . "/thumbnails/");
}
// Copy the file to the correct directory
if (!empty($_FILES))
{
$nameFile = rand(0,999999).time();
$tempFile = $_FILES['upl']['tmp_name'];
$fileSize = $_FILES['upl']['size'];
$fileTypes = array('jpg','jpeg','png', 'JPG', 'JPEG', 'PNG'); // File extensions
$fileParts = pathinfo($_FILES['upl']['name']);
$targetPath = "./uploads/photos/" . $user_id . "/";
$targetPathThumb = $targetPath . "thumbnails/";
$targetPathEcho = "/uploads/photos/" . $user_id . "/";
$targetPathEchoThumb = "/uploads/photos/" . $user_id . "/thumbnails/";
$targetFile = str_replace('//','/',$targetPath) . $nameFile . "." . $fileParts["extension"];
$targetFileThumb = str_replace('//','/',$targetPathThumb) . $nameFile . "." . $fileParts["extension"];
$targetFileEcho = str_replace('//','/',$targetPathEcho) . $nameFile . "." . $fileParts["extension"];
$targetFileEchoThumb = str_replace('//','/',$targetPathEchoThumb) . $nameFile . "." . $fileParts["extension"];
if($fileSize <= 7000000)
{
и такой :
// you can insert the result into the database if you want.
if($this->is_image($extension))
{
$config['image_library'] = 'gd2';
$config['source_image'] = './uploads/'.$filename;
$config['new_image'] = './uploads/thumbs/';
$config['create_thumb'] = TRUE;
$config['maintain_ratio'] = TRUE;
$config['thumb_marker'] = '';
$config['width'] = 300;
$config['height'] = 300;
$this->load->library('image_lib', $config);
$this->image_lib->resize();
echo 'image';
}
else echo 'file';
}