Posts Tagged ‘Developing’

PHP GTK 2.0

Posted on the March 14th, 2008 under Codinggg.., PHP by Shailesh Patel

After a long development and QA cycle, PHP GTK 2.0 is launched on 29th feb., 2008. Called leap day special marks PHP-GTK 2 as stable and comes with support for GTK+ versions.

What is PHP-GTK?

PHP-GTK is an extension for the PHP programming language that implements language bindings for GTK+. It provides an object-oriented interface to GTK+ classes and functions and greatly simplifies writing client-side cross-platform GUI applications.

For more information go through the official site, PHP GTK

Subversion

Posted on the February 8th, 2008 under Uncategorized by Shailesh Patel

I have to work on a site which is working using svn a subversion system,
I have to checkout from live code to local one and then after completing it again commit to their, So I wrote here some steps to use svn command through command line,
For Checkout:
svn checkout https://sitename.com/svn/dirname/
For Commit:
svn commit filename.php –message ‘Commited By Your name’
For Add:
svn add filename.php –message ‘Added By Your name’
For Delete:
svn delete filename.php –message ‘Deleted By Your name’

Remember that before add/ commit the file you must have to remove the .svn directory from your local copy so it is not affect your code in live. To find& remove .svn dir follow this command
find libs -type d -name .svn -exec rm -rf {} \;