Showing posts with label PHP. Show all posts
Showing posts with label PHP. Show all posts

Zend Server

Zend Server is a complete, enterprise-ready Web Application Server for running and managing PHP applications that require a high level of reliability, performance and security.

  • Business-grade PHP – An up-to-date, tested and supported PHP stack ensures high reliability, enhances security and increases staff productivity
  • Deployment with confidence – A complete and consistent environment used in development, testing and production eliminates many of the problems encountered during deployment
  • Rapid response to problems – Advanced application monitoring and diagnostics enable early problem detection and quick root cause analysis
  • Top application performance – Built-in optimization and acceleration ensures high performance and low resource utilization

The free community edition of Zend Server enables you to set up a complete PHP environment in minutes, and run non-critical PHP applications in development, testing and production. Zend Server screen shots



Zend Server Community Edition includes:

  • All-in-one native installers for Linux, Windows and Mac OS:
    • A certified PHP distribution
    • Zend Framework
    • Apache (or IIS integration)
    • MySQL (on Windows)
  • Out-of-the-box connectivity to all common databases
  • Java code connectivity
  • Web-based PHP administrator console
  • Basic application performance optimization

Zend is the PHP Company

About Zend

Businesses utilizing PHP know Zend as the place to go for PHP expertise and sound technology solutions. Zend's founders Andi Gutmans and Zeev Suraski are key contributors to PHP and the creators of the core PHP scripting engine, the Zend Engine. Because of their internationally recognized expertise, the company continues to provide important leadership for PHP and other open source communities, and plays a central role in the explosive growth of PHP.

http://www.zend.com

PHP 5 Power Programming

Free electronic copy of PHP 5 Power Programming from:
http://www.computer-books.us

Computer-Books.us makes available for free download some of the highest quality computer books.
The author / publisher has generously allowed them to be available for free online.
They are constantly adding new titles so check them back often.

The book is an introduction to the advanced features new to PHP 5 and is intended for PHP programmers who are migrating to PHP 5.
Web developers with programming experience will also find this tutorial very useful in order to begin working effectively with PHP 5.
Within the last few years, PHP has grown to be the most widespread web platform in the world, operational in more than a third of the web servers across the globe. PHP's growth is not only quantitative but also qualitative. More and more companies, including Fortune companies, rely on PHP to run their business- critical applications, which creates new jobs and increases the demand for PHP developers. Version 5, due to be released in the very near future, holds
an even greater promise.
While the complexity of starting off with PHP remains unchanged and very low, the features offered by PHP today enable developers to reach far beyond simple HTML applications. The revised object model allows for largescale projects to be written efficiently, using standard object-oriented methodologies.
New XML support makes PHP the best language available for processing XML and, coupled with new SOAP support, an ideal platform for creating and using Web Services.
This book, written by my colleague, Andi Gutmans, and two very prominent PHP developers, Stig Bakken and Derick Rethans, holds the key to unlocking the riches of PHP 5. It thoroughly covers all of the features of the new version, and is a must-have for all PHP developers who are interested in exploring PHP 5's advanced features.

Zeev Suraski

CHAPTER OVERVIEW

Chapter 1, “What Is New in PHP 5?” discusses the new features in PHP 5. Most of these new features deal with new object-oriented features, including small examples for each feature. It also gives an overview of the new extensions in PHP 5. Most of the topics mentioned in this chapter are explained in more detail in later chapters.

Chapter 2, “PHP 5 Basic Language,” introduces the PHP syntax to those readers not familiar with PHP. All basic language constructs and variable types are explained along with simple examples to give the reader the necessary building blocks to build real scripts.

Chapter 3, “PHP 5 OO Language,” continues exploring PHP 5's syntax, focusing on its object-oriented functionality. This chapter covers basics, such as properties and methods, and progresses to more complicated subjects, such as polymorphism, interfaces, exceptions, and lots more.

Using the previous chapter as a foundation, Chapter 4, “PHP 5 Advanced OOP and Design Patterns,” covers some of the most advanced features of PHP 5’s object model. After learning these features, including four commonly used design patterns and PHP’s reflection capabilities, you will soon become an OO wizard.

Now that you are familiar with the syntax and language features of PHP, Chapter 5, “How to Write a Web Application with PHP,” introduces you to the world of writing web applications. The authors show you basics, such as handling input through form variables and safety techniques, but this chapter also includes more advanced topics, such as handling sessions with cookies and PHP's session extension. You also find a few tips on laying out your source code for your web applications.

Chapter 6, “Databases with PHP 5,” introduces using MySQL, SQLite, and Oracle from PHP, but focuses primarily on the PHP 5-specific details of database access. For each database, you learn about some of its strong and weak points, as well as the types of applications at which each excels. And of course, you learn how to interface with them using PHP's native functions or using PEAR DB. All scripts can throw errors, but of course you do not want them to show up on your web site once your application has passed its development state.

Chapter 7, “Error Handling,” deals with different types of errors that exist, how to handle those errors with PHP, and how to handle errors with PEAR. As one of the important new features in PHP 5 is its renewed XML support, a chapter on XML features in PHP 5 could not be missed.

Chapter 8, “XML with PHP 5,” talks about the different strategies of parsing XML and converting XML to other formats with XSLT. XML-RPC and SOAP are introduced to show you how to implement web services with both techniques. Although not specifically for PHP 5, the five mainstream extensions that

Chapter 9,“Mainstream Extensions,” covers are important enough to deserve a place in this book. The first section, “Files and Streams,” explains about handling files and network streams. A stream is nothing more than a way to access external data, such as a file, remote URL, or compressed file. The second section, “Regular Expressions,” explains the syntax of a regular expression engine (PCRE) that PHP uses with numerous examples to show you how these expressions can make your life easier. In “Date Handling,” we explain the different functions used to parse and format date and time strings. In “Graphics Manipulation with GD,” we show you through two real-life scenarios the basic functions of creating and manipulating graphics with PHP. The last section in this chapter, “Multibyte Strings and Character Sets,” explains the different character sets and the functions to convert and handle different ones, including multi-byte strings used in Asian languages.

Chapter 10, “Using PEAR,” introduces PEAR, the PHP Extension and Application Repository. Starting with concepts and installation, the chapter shows how to use PEAR and maintain the local installed packages. This chapter also includes a tour of the PEAR web site.

Chapter 11, “Important PEAR Packages,” gives an overview of the most important PEAR packages, along with examples. Packages covered include Template Systems, the Auth package to do authentication, form handling with the HTML_QuickForm package, and a package used to simplify caching.

Chapter 12, “Building PEAR Components,” explains how to create your own PEAR package. The PEAR Coding Standard and package.xml package definition format, together with tips on including files and package layout, get you on your way to completing your first PEAR package.

Chapter 13, “Making the Move,” deals with the few backward-incompatible changes that were introduced between PHP 4 and PHP 5. This chapter tells you which things you need to take care of when making your application work on PHP 5, and provides workarounds wherever possible.

Chapter 14, “Performance,” shows you how to make your scripts perform better. The chapter offers tips on standard PHP usage, the use of external utilities (APD and Xdebug) to find problems in your scripts, and PHP accelerators like APC and Zend Performance Suite.

Chapter 15, “An Introduction to Writing PHP Extensions,” explains how to write your own custom PHP extension. We use a simple example to explain the most important things like parameter parsing and resource management.

Chapter 16, “PHP Shell Scripting,” shows you how to write shell scripts in PHP, because PHP is useful for more than just web applications. We carefully explain the differences between the CLI and CGI executables in which PHP comes, including command-line parameter parsing and process control. This book also includes three appendices. Appendix A, “PEAR and PECL Package Index,” provides an overview of all important packages, with descriptions and dependencies on other packages. Appendix B, “phpDocument Format Reference,” explains the syntax as understood by the PHP Documenter tool to generate API documentation from source code. Appendix C, “Zend Studio Quick Start,” is an introduction to working in the Zend Studio IDE.

Chinese and Japanese Partners at 1001webs.net

We are now in the process of selecting suitable candidates to manage the Chinese and Japanese versions of 1001webs..
We are currently looking for Chinese and Japanese NATIVE partners ONLY.

Basically, the way we deal with our international associates is that we provide the hosting and promotion, and in return 1001webs keeps a 4% commission of all orders coming through.

Each associate is made fully responsible for managing its site.
That includes translating into their language and maintaining their section at 1001webs..
Every order placed in their respective languages is routed exclusively to each associate, who must keep in touch with the client, negotiate orders and develop websites based in the CMS systems we offer.
Billing is also responsibility of each associate, except for Domain Registrations, Hosting, and the Template section, which are fully automated.

The bulk of our business is CMS implementation, and we typically charge 800 Euros for the setup, customization and 1 year maintenance of every CMS, but each associate is free to charge whatever they find appropriate.

Each Associate will also be allowed to generate income by using its own AdSense code and Template code in its own section.

Please, understand that this is a Partnership offer, NOT a paid job.

Only native speakers of Chinese and Japanese need to apply.

Job Type:
  • Drupal
  • osCommerce
  • ZenCart
  • Joomla
  • WordPress
  • PHP
  • Project Management
  • Translation
  • Web Promotion

Database: MySQL

Operating system: Linux,

Misc: cPanel, phpMyAdmin


Please contact us at:
http://1001webs.blogspot.com/2009/12/contact-1001-webs.html

Thank you.

PHP-MySQL proficient partners required at 1001webs.net

We are looking for PHP-MySQL proficient partners to manage the Spanish, French, German and Portuguese versions of 1001webs.net

If you are interested, please post your application at our Forum,
and provide links to samples of your work.


No decision will be made until mid-September

Aplicaciones Open Source

A continuación un listado de Aplicaciones Open Source con las que trabajamos habitualmente.
Todas ellas hacen un uso extensivo de bases de datos MySQL y PHP, que han de ser configurados para obtener el mejor rendimiento

Portales/CMS:

PHP-Nuke
- Portal con gran disponibilidad de módulos, bloques de contenido y extensiones.

Post-Nuke
- CMS derivado de PHP-Nuke y optimizado para rendimiento.

Mambo
- Sistema de Gestión de Contenido (CMS), con capacidad para crear gran cantidad de páginas.

Typo 3
- Sistema estructurado de Gestión de Contenidos con numerosas opciones de integración con bases de datos.

Xoops
- Otro derivado de PHP-Nuke orientado a Grupos de Trabajo.

Joomla
- CMS derivado de Mambo con una creciente popularidad.

Foros:

phpBB2
- La solución más popular para crear un Foro o Panel de Discusión.

SMF
- Otro sistema de Foros, con multitud de opciones de configuración y presentación.


Comercio Electrónico:

CubeCart
- Sistema de venta on-line, con numerosos adeptos.

osCommerce
- Solución de gran eficacia, orientada a grandes empresas.

ZenCart
- Sistema de venta de gran facilidad de uso

Blogs:

Nucleus
- Herramienta para crear blogs o páginas personales.

WordPress
- Sistema de blogs con gran multitud de opciones y facilidad de uso.


Galerías de Imágenes:

Gallery
- La opción más popular para mostrar imágenes en Internet.

Coppermine
- Creación compartida de Galerías de imágenes por Grupos y Usuarios.

Wiki:

PhpWiki
- Creación de documentos y páginas compartidas que todo el mundo puede editar.

TikiWiki
- Creación compartida de Galerías de imágenes, Foros, Encuestas, Chat, RSS, Artículos, Blogs,
etc.


ExtraNet para Empresas:

PHProjekt
- Extranet para empresas y Grupos de trabajo.

dotProject
- Gestión de empresas e Integración de Bases de Datos.