we are developing php application but dont know how to manage daily updated php pages by each of us. Is there any dummy server to update daily or we have to register a host name for that
You might look into using a file sharing site, for example I use https://www.dropbox.com
GitHub https://github.com/ might be something more what you’re looking for, though I really haven’t used it much myself. However, it’s becoming quite popular or is popular.
Yeah you should use some kind of versioning like git, svn, mercurial, etc.
And shame on you Strider, everyone should use versioning, even for hobby projects
Problem is, I’m always modifying and to lazy to take the time. LOL ;D
Oh for Shame [member=57087]Strider64[/member] , you don’t have the time? That sounds like what the newbies post on here about updating to PDO. Shame shame shame.
Ever since I started using git it has been made programming much easier. There have been several times when I messed up some code and needed to get back to what I had before. It only takes a few seconds to do a git update and it will save you headaches down the road.
It will also come in handy when you want to do a different version of something that you have a base program for such as a free version vs a pro version.
I still use SVN - too lazy to move to GIT.
[member=57087]Strider64[/member] I too used to think it was overkill. One day i tried it to see what all the fuss was about. Needless to say I still thought it was pretty useless.
A while later I found that needed to eliminate a bug i’d introduced somewhere along the line. Went back version by version until i found where i’d intoduced the error and eliminated it.
It was then i realised the power of version control.
Today, i use it for everything i’m coding, even if I’m just messing around.
Just a note: Most versioning software git/svn support localhost storage (dont need online accounts).
I think I liked Bazaar version control system, simple to use.
Just lots of SCM software out there.
+1 for Version control. Github.com is a great place to start.
I’d also look into setting up a unified vagrant box for your devs. This will keep all of your developers developing on the same platform.
puphpet.com is a great configuration tool for puppet (used for your vagrant instance).
Good luck!