Possible to FTP upload to 2 different locations from within the same project?
Hi,
Situation is as follows:
1 laravel application, lives in 1 folder locally.
On the server, the laravel app directory can't be stored in the public_html directory, so it's one directory higher:
/home/username/laravel/app/
While the public files live in
/home/username/public_html/index.php
/home/username/public_html/css/...
/home/username/public_htmljs/...
etc...
Is there a way to map the folders this way with the PHPstorm built-in FTP system?
Frank
请先登录再写评论。
If I udnerstand you correctly, you need to add Tools | Deployment | Configuration | Mappings -> Add another mapping
It's that simple :)
Thanks.