command line
Syncing Files Using The Windows Command Line
Wed, 11/10/2010 - 11:26 | by philipnorton42To sync files using the Windows command line you will need to use the xcopy command. The default action of this program is to copy a file or directory from one place to another, but you can give it flags to tell it to sync the files. There are a few flags available (use xcopy /? to see them all) but you will probably only want to use the following:
Using Custom Properties In Phing
Thu, 01/08/2009 - 12:25 | by philipnorton42Phing allows you to set up certain parameters that can be used throughout the rest of the script. These might be used to define a non standard build directory, or to store database connection details that can be written to the connection file during the build.
Properties are defined using the property element, which you should place at the top of your build.xml file in order to make it easy for other developers to see what is going on. The following example defines a property and the uses the main target to print the property out.
Logging Onto A MySQL Database
Mon, 01/28/2008 - 14:21 | by philipnorton42If you have command line access to your MySQL database server you will need to use certain parameters to log in. Most web hosts will not allow you to do this, so you might want to install MySQL into a local computer and give it a go.
To log into mysql you must run the program called mysql with certain parameters. Here is an example.