How can you create a new PHP project in Netbeans with source files located on the local network?

I am trying to create a new PHP project in a situation where our client gave us only a remote desktop connection for his files.

How it usually works in Netbeans:

Simply put, when a project is created using external sources, we can click in our project in one file and upload and download it (via ftp).

nb options to upload and download via ftp

I would like to be able to do this also in remote files located on the server, which may be accessible by our local network, but which are not installed by ftp.

additional information

Dreamweaver, , .

Netbeans , , .

, , ​​. -, -, ftp.

List of projects types

, " -", , NB .

note 1: , , ftp.

2: " " , , ( , , , ). ​​

note 3: , -, , ftp.

+3
2

(git, mercurial, svn...). Windows? (. ). , , ( )

, , :

  • , , , Z
  • FTP- (, FileZilla)
  • FTP- FileZilla "ftp home" ( FileZilla , FTP) - Z:\path, , Z
  • NetBeans, PHP ( FileZilla)

.

+2

NetBeans:

NetBeans -:

Choose File > New Project (Ctrl-Shift-N on Windows/Cmd-Shift-N on OS X).
Choose Java Web > Web Application with Existing Sources. Click Next.
In the Name and Location page of the wizard, follow these steps:
    In the Location field, enter the folder that contains the web application source root folders and web page folders.
    Type a project name.
    (Optional) Change the location of the project folder.
(Optional) Select the Use Dedicated Folder for Storing Libraries checkbox and specify the location for the libraries folder. See Sharing Project Libraries in NetBeans IDE for more information on this option.
(Optional) Select the Set as Main Project checkbox. When you select this option, keyboard shortcuts for commands such as Clean and Build Main Project (Shift-F11) apply to this project.
Click Next to advance to the Server and Settings page of the wizard.
(Optional) Add the project to an existing enterprise application.
Select a server to which to deploy. If the server that you want does not appear, click Add to register the server in the IDE.
Set the source level to the Java version on which you want the application to run.
(Optional) Adjust the context path. By default, the context path is based on the project name.
Click Next to advance to the Existing Sources and Libraries page of the wizard.
Verify all of the fields on the page, such as the values for the Web Pages Folder and Source Package Folders.
Click Finish.
+1

All Articles