cp -R Blog/ Newblog/
Using this command you can copy an entire directory, its subdirectories, and files. Blog is existing directory and Newblog is destination directory.
CakePHP.Application.Development |
Publishing:Packt Publishing Birmingham-Mumbai
Authors:Ahsanul Bari, Anupom Syam Step-by-step introduction to rapid web development using the open-source MVC CakePHP framework |
Zend-PHP.Certification.Study.Guide |
Publisher:Zend Technologies
Authors:Stuart Herbert, Daniel Kushner, George Schlossnagle, Chris Shiflett, Björn Schotte The Zend PHP Certification Study Guide covers every topic that is part of the exam. It was developed by some of the very same authors who designed the exam’s questions and was thoroughly reviewed to ensure that it provides every bit of information required to cover each subject appropriately. |
Wicked.Cool.PHP |
Publisher:No Strach
Authors:William Steinmetz, Brian Ward Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text. The 76 easily implemented scripts will also teach you how to download and you will now |
The.Definitive.Guide.to.symfony
|
Publisher: Apress
Authors:Francois Zaninotto,Fabien Potencier For this book, you need a basic understanding of PHP 5 and object-oriented programming. Of course, having already developed web applications in PHP before reading this book is a plus, for you will see this book as a collection of answers to the questions you regularly ask yourself |
|
Publisher: Friendsof an Apress company
Authors: Kevin Potts, Robert Sable, Nathan Smith Each one of this book’s authors has traversed the meandering road of open-source content manage-ment, arriving at Textpattern as a powerful tool to assist in rapid site development. The bookyou are now reading is one that we wanted to have when we first learned to use this system. It is the result of alabor of love for a methodology that has made our lives easier. |
|
Publisher: Sitepoint
Author: Harry Fuecks The PHP Anthology is, first and foremost, a compilation of the best solutions provided to common PHP questions that turn up at the SitePoint Forums on a regular basis, combined with the experiences and insights I’ve gained from my work with PHP on a daily basis over the last four years |
|
Publisher:WileyAuthor:Mohammed J.Kabir
This book is designed for intermediate-level to advanced-level PHP developers who can review the fifty PHP applications developed for this book and deploy them as is or customize them as needed. |
Rails.for.PHP.Developers |
Publisher:The Pragmatic BookshelfAuthor:Derek DeVries,Mike Naberezny
Rails embraces a general development philosophy that sets a high pri-ority on creating maintainable code. By following some simple guide- lines, you should be able to keep a uniform pace of development and be free to change your code with little fear of breaking existing functional-ity. |
Programming.PHP.2nd.Edition |
Publisher:O’ReillyAuthor:Rasmus Lerdorf, Peter Macintyre,Kevin Tatroe
Programming PHP, Second Edition is the authoritative guide to PHP 5 and |
|
Publisher:AppresAuthor:Kevin McArthur
This is an advanced book. I have needed to choose carefully which information to include and what readers should be expected to know already. Readers should have a solid understanding of HTTP and PHP—that is, you should understand how to make web pages and build forms, and you should understand key concepts like the HTTP request cycle. |
PHP.Eclipse.A.User.Guide
|
Publisher:PACKET publishingAuthor:Shu-Wai Chow
Take advantage of the leading open source integrated development environment to develop,organize, and debug your PHP web development projects. |
PHP.Web.2.0.Mashup.Projects |
Publisher:PACKT publishingAuthor:Shu-Wai Chow Create practical mashuos in PHP,grabbing and mixing data from Google
Maps,Flickr,Amazon,YouTube, MSN Search,Yahoo!,Last.fm, and 411Sync.com |
1. IF you are windows user download Putty and Log in to your server via SSH protocol.
2. I expect you know how to use Putty!!
3. Download wordpress mu in your server
wget http://mu.wordpress.org/latest.zip
4. Execute the LS command to ensure that the file is there and ready to be unzipped.
LS
5. Extract the archive with unzip latest.zip
unzip latest.zip
6. You’ll need to copy all the files from the “wordpress-mu” folder to the current directory. Because wordpress-mu comes packaged into a “wordpress-mu” folder.
cp -rf ./ wordpress-mu/* ./
This command will recursively copy all of the files and folders from the “wordpress-mu” directory into the current working directory.
Six easy steps will save your time especially if you are using dialup or any show connection.
As we all know WordPress mu normally require sub domain or domain to install in local system.
Here are steps to configure wordpress mu in local system xampp.
You need to make a sub domain.
Open this WINDOWSsystem32driversetchosts
Add local.domain (or whatever you'd like to call it) to the localhost line
Example : 127.0.0.1 localhost local.domain
Try this now - http://local.domain/
Done!!
FCKeditor is an open source WYSIWYG text editor that can be used in web pages. It aims to be lightweight and requires no client-side installation.
Its core code is written in JavaScript, having server side interfaces with Active-FoxPro, ASP, ASP.NET, ColdFusion, Java, JavaScript, Lasso, Perl, PHP and Python.
To install a new plugin, copy the unzipped plugin to your editor’s plugin directory ‘editor/plugins’ (e.g. for the placeholder plugin the path to its fckplugin.js file would be ‘editor/plugins/placeholder/fckplugin.js’). That’s all!
You can then add the plugin in your custom Configuration File. You can either change the default path, and add it, or use the third paramter to FCKConfig.Plugins.Add to specify the path to the plugin:
// Change the default plugin path.
FCKConfig.PluginsPath = FCKConfig.BasePath.substr(0, FCKConfig.BasePath.length - 7) + '_samples/_plugins/' ;
// Add our plugin to the plugins list.
// FCKConfig.Plugins.Add( pluginName, availableLanguages )
// pluginName: The plugin name. The plugin directory must match this name.
// availableLanguages: a list of available language files for the plugin (separated by a comma).
FCKConfig.Plugins.Add( 'findreplace', 'en,it,fr' ) ;
FCKConfig.Plugins.Add( 'samples' )
// If you want to use plugins found on other directories, just use the third parameter.
var sOtherPluginPath = FCKConfig.BasePath.substr(0, FCKConfig.BasePath.length - 7) + 'editor/plugins/' ;
FCKConfig.Plugins.Add( 'placeholder', 'en,it,de,fr', sOtherPluginPath ) ;
FCKConfig.Plugins.Add( 'tablecommands', null, sOtherPluginPath ) ;
FCKConfig.Plugins.Add( 'simplecommands', null, sOtherPluginPath ) ;
Some Useful FCKeditor Plugins you can download from here.