tom_cruz
tom_cruz

Reputation: 411

PhpStorm configure to work remotely

Hi is there a way for PhpStorm to work directly on a remote server? No local files. Because as of the moment PhpStorm has local files wherein it just automatically uploads all files during save on remote.

My problem is if someone changes something remotely I need to manually download it first before seeing the changes.

Upvotes: 0

Views: 100

Answers (1)

Dmitry
Dmitry

Reputation: 2087

It's not possible to fully operate on a remote server. Phpstorm need a local project, which contain the .idea folder. You can edit remote files without downloading them to the project folder. But in this case the entire list of features is not available.

For you can be useful the following settings:

tools->Deployment->Options:

  • warn when uploading over newer file
  • Notify about remote changes

Upvotes: 1

Related Questions