English 中文(简体)
FTP或HTTP促进内部协作? [闭门]
原标题:FTP or HTTP for internal collaboration? [closed]
Closed. This question is opinion-based. It is not currently accepting answers.

I m making an app with a friend. I have a server which supports PHP and MySQL which my app is based on.

因此,我们需要在作出这一努力时进行合作。

我们正在使用“梦想”和“NetBeans”和我们的电话。

The question is: Is it secure to put the app we are developing on the web while its under development, and what should we use to protect it from the outside world? Will Password Protected FTP be a good solution? or HTTP with a password protected folder?

I have seen there is a problem in HTTP protected folders. The login accepts a some other passwords too. Like if the password is helloworld123 and you login with helloworld it would accept and login?

SO I think HTTP will not be a good solution. And if it is then how should i make it more secure? So what should I use? FTP or HTTP? thanks...

最佳回答

如果你正在拟定申请,你就应当在当地开发。

您将rapidlytire of test a change by uploading it to arange Service.

此外,如果你的朋友作出改变,情况如何? 你们会很快地遇到法典上的碰撞,这完全破坏了你们的合作。

So first of all, you should both install a LAMP/MAMP/WAMP stack locally. You should be testing everything locally, and you don t need to publish it to a server to test.

Then, you should be using some kind of version control in order to add any changes you make to a remote repository. This means that then you and your friend can work in isolation from each other, and then commit your own changes to a repository, and then you can merge the branches as you go.

When your application is then finished, you can then start to think about putting it into a production ready state by adding it to a server.

Sign up for an account at GitHub.com read as much as you can about how version control works, because if you intend to work together on anything you need to wrap your head around it.

问题回答

如果有可能,我总是使用<代码> 当地东道<>/代码>和与<代码>Drop Box/code>或任何类似表示对。 否则,你可尝试<代码>.htaccess,以防止你和你的朋友以外的任何人进入你的网页。





相关问题
How to set response filename without forcing "save as" dialog

I am returning a stream in some response setting the appropriate content-type header. The behavior I m looking for is this: If the browser is able to render content of the given content type then it ...

Which Http redirects status code to use?

friendfeed.com uses 302. bit.ly uses 301. I had decided to use 303. Do they behave differently in terms of support by browsers ?

Does HttpWebRequest send 200 OK automatically?

Background: I am implementing Paypal IPN handler. This great article on Paypal states that I am required to send a 200 OK back to Paypal after I read the response. The processing of IPN request is ...

Java HTTPAUTH

我试图把桌面应用程序连接起来,我是同D.icio.us api @ Delicious Alan书写的,简单地向他们提供我的用户名和密码,并请他把书记上写给我......。

Finding out where curl was redirected

I m using curl to make php send an http request to some website somewhere and have set CURLOPT_FOLLOWLOCATION to 1 so that it follows redirects. How then, can I find out where it was eventually ...

热门标签