Dear you guys!
I have huck in to PHP for short time, it is real fun. I have been developed a web-based management program. While developing program, I got the difficulty in version and configuration management. Could you tell me how to deal with these problems. What the software (like CVS) support PHP in configuration management? Thank you very much.
Help you, help me!
PHP version management!
Moderator: General Moderators
to edit your PHP configuration settings, you should locate your php.ini file. you can do it manually, or use the ini_set() function for some options.
Set Search Time - A google chrome extension. When you search only results from the past year (or set time period) are displayed. Helps tremendously when using new technologies to avoid outdated results.
- Buddha443556
- Forum Regular
- Posts: 873
- Joined: Fri Mar 19, 2004 1:51 pm
Configuration Management
I've tried a few like CVS and Subversion however as a solo developer these seems like over kill.
This was going to be a longer post but I got to go ...
I've tried a few like CVS and Subversion however as a solo developer these seems like over kill.
This was going to be a longer post but I got to go ...
Re: PHP version management!
I highly recommend Subversion. Its a fantastic piece of software, and useful at every level of development work.Elmoro wrote:What the software (like CVS) support PHP in configuration management?
I once used CVS, but its limited and the problems it has are very frustrating for a new user.
With Subversion as a single user, I have a repository that keeps track of my changes. Which means I don't need to have a backup directory for each major change I make. I can simply set a tag, do my changes, and if they aren't right, I can revert the entire tree back to that tag. (Or, of course, revert individual changes or files).
It also gives me a second location for my code: One on my dev box, and another on a public site. So I don't need to make backups as often.
It also gives me a way to share my code: With WebSVN, people can look at the code as I'm working on it, which allows them to comment on it.
Thats just for one user. If I have more than one, it also gives me the ability to merge multiple user's work intelligently, avoid conflicts, save time by downloading only the changes in a file instead of the entire project..
The list goes on. Subversion for the win!