@martibean i have two different frameworks(front-end and back-end) i want to upload a file out of my project folder and access through another framework like word press
@vschavala Try this, For example, your laravel project at ../xxx/laravel/public and another project at ../yyy/files now, go to your laravel file uploading controller and do:
// ../xxx/laravel/app/controllers/fileUploadController.php
public function uploadFile($request){
$file = Input::file('upload');
$file_name = $file->getClientOriginalName();
$file->move('/yyy/files/', $file_name);
return "Upload successful!";
}