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

4/15/13

PHP and MySQL based file management system

ProjectSend is PHP and MySQL based file management system aimed at managing client-specific files. Clients are created and assigned a username and a password. Then you can upload as much files as you want under each account, and optionally add a name and description to them.

 Some of the features of ProjectSend taken directly from their website:
  • Unlimited file size uploading! (thanks to plupload, uploding in “chunks” allows you to overcome any server restriction on file and post sizes).
  • Upload several files at a time and then add the information to all of them on a single screen.
  • Upload from the web interface directly or by FTP, and then import the files into ProjectSend.
  • Clients can upload files to their accounts.
  • Possibility to hide or show files from clients after they were uploaded.
  • Really simple and attractive design. Ease of use for both users and clients!
  • Comes with an installer.
  • User roles (Administrator. Account Manager, Uploader).
  • Sortable full lists of files, users and clients.
  • Options for localization (you can select your timezone and date format). This is reflected inmediatly on every list.
  • Templates system allows you to easily change the files list features and appearance.
  • Two templates included: Default and Gallery.
  • Options and branding selection pages. Your company logo is seen on the clients lists.
  • Can be translated easily via .po files
Website: http://code.google.com/p/clients-oriented-ftp/
Demo: http://www.softaculous.com/demos/ProjectSend
------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------

3/8/13

Installation Configuration of PHP

Once PHP has been installed on your computer, you can customize it to fit your needs. Although some
of the configuration settings deal with how the information is shown through the browser, a great many
of the settings relate to how the server handles errors and how those errors are displayed to you and
your users. You will also be able to have some control over how PHP interacts with MySQL.

Testing Your Installation:

To ensure that both PHP and Apache have been installed together, write another test program. Open
Notepad and type the following program:


PHP Testing

echo “If this works, we really did it!”;
?>
Save this file as phptest.php. Open your browser and type http://localhost/phptest.phpand you
should see the screen shown in Fig=1

Customizing Your Installation:

The configuration file that holds the key to how PHP runs on your computer is named php.ini; it can
be found in the root directory where you extracted your installation files. For the purposes of our discus-sion, we assume that you extracted the files to c:\ and then renamed the installation directory to
c:\php\.
The php.inifile includes a brief explanation of each of the configuration settings, which are beyond the
scope of this discussion. However, you are encouraged to read through the entire introduction of the
php.inifile before you begin making changes. In the table that follows, we touch on some of the more
commonly changed settings.

Money making link.

2/12/13

Where to Find PHP and More


You can find PHP at http://www.php.net/. PHP is open-source software, which means you won't need your credit card when you download it.

The PHP Web site is an excellent resource for PHP coders. The entire manual can be read online at http://www.php.net/manual/, complete with helpful annotations from other PHP coders. You can also download the manual in several formats.

You can find out more about getting Linux for your computer at 
http://www.linux.org/help/beginner/distributions.html. If you want to run Linux on a Power PC, you can find information about Yellow Dog Linux at http://www.yellowdoglinux.com/. Mac OS X, Apple's latest operating system, is based on Unix BSD and can run PHP with no problems. If you are running OS X, you can find installation information at http://www.php.net/manual/en/install.macosx.php.

If you want to run PHP with Windows, you can find complete installation instructions at http://www.php.net/manual/en/install.windows.php.

MySQL, one of the two databases we will use in this book, can be downloaded from http://www.mysql.com. Versions are available for many operating systems, including Unix, Windows, and OS/2.

Platforms, Servers, Databases, and PHP

Platforms, Servers, Databases, and PHP

PHP is truly cross-platform. It runs on the Windows operating system; most versions of Unix, including Linux; and Macintosh OS X. Support is provided for a range of Web servers including Apache (itself open-source and cross-platform), Microsoft Internet Information Server, WebSite Pro, the iPlanet Web Server, and Microsoft's Personal Web Server. The latter is useful if you want to test your scripts offline on a Windows machine, although Apache can also be run on Windows.

On most servers PHP can be installed as a server module. In other words, it runs as part of the server process rather than as a separate application. PHP is also installed as a standalone command-line application.

In this book, we will concentrate on building Web applications, but do not underestimate the power of PHP as a general scripting tool comparable to Perl. The fact that PHP runs as a command-line application means that any server that supports CGI scripts should be able to work with it. Configuration, though, will vary from server to server.

PHP is designed to integrate easily with databases. This feature is one of the factors that makes the language such a good choice for building sophisticated Web applications. PHP supports almost every database currently available, either directly or via Open Database Connectivity (ODBC).

Throughout this book, we will use a combination of Linux, Apache, and MySQL. We will also introduce SQLite, a lightweight but powerful SQL library that is newly bundled with PHP 5. All these are free to download and use and can be installed relatively easily on a PC.

PHP: From Home Page to Web Enterprise.(Part-1)


You'll Learn:
  • What PHP is
  • About PHP's history
  • What improvements can be found in PHP 5
  • Some options that add features to your PHP binary
  • Some reasons you should choose to work with PHP
Welcome to PHP! you will look at almost every element of the PHP language. But first, you will explore PHP as a product its history, features, and future.

What PHP is:

PHP is officially known as PHP: Hypertext Preprocessor. It is a server-side scripting language often written in an HTML context. Unlike an ordinary HTML page, a PHP script is not sent directly to a client by the server; instead, it is parsed by the PHP engine. HTML elements in the script are left alone, but PHP code is interpreted and executed. PHP code in a script can query databases, create images, read and write files, talk to remote servers—the possibilities are endless. The output from PHP code is combined with the HTML in the script and the result sent to the user.

PHP is also installed as a command-line application, making it an excellent tool for scripting on a server. Many system administrators now use PHP for the sort of automation that has been traditionally handled by Perl.

What Need Does PHP Fulfill?

There have been scripting solutions for as long as there has been a World Wide Web. As the need to create sites with dynamic content has grown in recent years, so has the pressure to create robust environments quickly and efficiently. Although C can be a great solution for creating fast server tools, it is also hard to work with and can easily produce security holes if not carefully deployed. Perl, a language originally developed for text processing naturally met the demand for dynamic Web environments. Much easier to deploy safely than C, its slower performance has always been more than balanced by the comparatively fast development cycle it offers. Even more useful has been the increasing availability of a large number of stable code libraries for Perl.

So where does PHP fit in? PHP was written especially for the Web. Many of the issues and problems faced by Web programmers are addressed within the language itself. Whereas a Perl programmer must use an external library or write code to acquire data submitted by the user of a Web page, PHP makes this data automatically available. Whereas a Perl programmer must install modules to enable her to write database-driven environments, PHP bundles a powerful SQL database library and provides built-in support for a whole range of third-party databases. In short, because PHP has been created for Web programmers, it has a set of functions for almost any typical problem you might encounter, from managing user sessions to handling XML documents.

So, do we have to pay for this ease of use with even slower performance? Not at all. PHP is designed to run as a module with many server applications, which means that there are none of the start-up overheads associated with CGI scripts. The fact that many typical tasks are handled by PHP means that developers are freed from reliance on utility libraries that can slow things down.

It is not the case that PHP does not provide libraries, though. Perl has the Comprehensive Perl Archive Network (CPAN), and PHP has the PHP Extension and Application Repository (PEAR)—its own repository of powerful packages that extend PHP's power.

12/27/12

HTML to PHP Converter 4.2.2.0

This powerful software enables you to do all html to php or asp instantly. Just with one click. Simply fill in the blanks and hit the “Generate Code”… Voila! You’ll get what you want in seconds. Not days. Not hours. Not even minutes!

Now you can say GOODBYE to long hours of manually converting your HTML to PHP or ASP documents and doing many web designer tasks as you or your clients want!

Features:

Convert any HTML to PHP or ASP documents
Convert any HTML into PHPNuke Block
Convert any HTML into PHPNuke Modules
Encrypt & Secure your website source code to protect it from hackers
Encrypt & Secure your PHP source code
Encrypt & Secure your URL or Email Addresses to protect it from Spammers
Encrypt & Secure your Affiliate or Reseller Links to protect it from online thieves
Instantly create your own customized Pop Up Script
Instantly create your own customized Meta Tag Script

Download.:http://rapidshare.com/files/37890113/HTML_to_PHP_Converter_4.2.2.0.rar

12/26/12

Need to Hire A PHP Programmer? What You Should Know

PHP programming is used to develop websites by embedding on the HTML (Hypertext Markup Language) code. This might sound like Greek to many people but believe me there are individuals whose sole purpose is to do programming work. So if you need website development and content management, you need to hire a PHP programmer.

Hire a PHP programmer who has knowledge of a wide variety of frameworks like Zend whereby you hire Zend programmer who has skills in the use of PHP programming. The Zend framework helps to reduce the number of lines of programming codes written thus making it easy for programmers. Many programmers can be found on the internet so it is easy to hire a PHP programmer working for an IT company or outsourced. If it is your first time to hire a PHP programmer, you need to do your research well and establish exactly what it is you want done. You need to explain succinctly so as to get the expected results. When you hire a PHP programmer you are entitled to being kept up to date with what they are doing or rather how they are progressing with the project.

Some of the time you can hire a PHP programmer on a part time basis but other times, the work involved requires more input and a lot more attention which would require that you hire a PHP programmer on a full time basis. Another important thing to note as you hire a PHP programmer is that intellectual property ownership is left in your hands and you are free to decide to sell those rights to another individual or a company. Most of the PHP programmers sign a contract or agreement giving you the full rights of ownership of the source codes of the programming they have done so confidentiality is maintained always. And if you are working with a professional company you can rest assured that they will deliver the results that you were hoping to get and hopefully much more than your expectations.

Lastly one thing I have not touched on in relation to when you set out to hire a PHP programmer is that SEO (Search Engine Optimization) techniques can be included in the services they provide for you but I would say it depends on the company you have hired. These techniques enable you to get a favorable rating when someone looks for a company like yours on a search engine like Google or Yahoo.

More Free Articles.: The Money making of a Niche ::Free Data Entry Work :: Imtiaztips Weblog :: Free Webmaster Articles :: More iPod Articles :: Download Freeware Software ]

12/20/12

PHP Shopping Cart Benefits Your Website

You are an Internet entrepreneur hoping to make it big in the online world of business. You realize that your website has to be functional, accessible to viewers and attractive to keep the attention of the viewer; but do you realize the benefits of having a PHP shopping cart on your website? A PHP shopping cart can allow the visitor to your website to perform many functional tasks such as adding to the cart, updating the cart when changes are made to the items in the cart and deleting unwanted items from the cart. The shopping cart should be set up in a familiar way and should have a textual message on each page to inform the visitor of how many items are in the cart to remind the visitor when they are browsing the site of the existence of the cart in this "non-physical" world where a virtual cart is not as visible as a real shopping cart would be in the real world.

You can make a PHP shopping cart very accessible to the website visitor by a link, such as "add to cart", or a visible button located by each item on the web page. You can also have both button and textual message for each product on the page.

The PHP shopping cart has many traits that lends success for your business such as having the requisite information being sent to the cart, the ability to locate and execute a high compliance cart, and the ability to call an external PHP file. It is also possible to have the PHP shopping cart to have the option of paying via the popular Paypal service.

Most PHP shopping cart software programs come with complete ready-to-run PHP shopping carts that do not require any programming knowledge. The software is usually cost-effective and can be complement major ecommerce features. PHP shopping carts are usually easy design integration with any HTML editor and are usually accompanied by ready-to-use skin templates. PHP shopping carts are search engine friends, and gives the website owner the ability to accept online credit card processing. Most PHP shopping cart software allows for real-time shipping quotes and easy order notifications by email or SMS. If you are looking for a software program consider PHP shopping carts.

PHP shopping carts are flexible, fully functional that can easily be integrated into any ecommerce website. Look for one with custom template systems that will make the cart easy to set up with multiple payment gateways. When purchasing a PHP shopping cart make sure the in company you purchase the software from has free technical support, multiple currency support and offers multiple shipping configurations. You want total control over your shopping cart and having separate links from each product to the shopping cart will allow the customer to easily add products to the cart.

DataLife Engine ® - v.9.0 Final Release is available.



In this release, you expect new features to your site, in connection with introduction of new JS (JQuery) framework, new features in templates to implement your ideas, new opportunities for video player, new mechanisms to fight spammers and much more. read more...

Download DataLife Engine v.9.0 Final English.

In the script added a powerful framework jQuery, allowing visitors to transfer the interaction with the script to a new level. Thanks to this library all the AJAX script functions have its own animation effects:

- Added smooth animations information window Download AJAX, and all the settings of this box moved to Template CSS
- Added smooth positioning of the editing field of news and commentary with fast editing
- Added animation when you add comments on the site
- Added animation when you preview written personal message
- Added animation when viewing the list of news archive
- Added animated flipping through the calendar in the form of paging books
- Added damping effect in the vote on the site and view the results
- Replaced by a popup notification of new personal messages on the site.

And also thanks to powerful capabilities jQuery, you can add to your template and design of many advanced features and effects. Attention: If your template is already used this framework, then you should delete it from your template connect the library, because the script automatically connects jQuery and no additional connections in the templates no longer required.

In the mass management comments on the site, added the possibility of combining the selected comments.

Updated WYSIWYG editor to latest version, as well as the editor was optimized for use with the library jQuery, which allowed for faster boot-editor in the browser, as well as the faster the editor with lyrics.


Fixed problem with UTF version of the script with automatic breakdown of long words in comments, in which word length was two times less than that indicated in your script.

Fixed problem with UTF version of the script, at which the search and replace the words in the filter words, case sensitive, regardless of the settings for a word in the filter.


Fixed problem with UTF version of the script, at which the search and replace the words in the filter words, case sensitive, regardless of the settings for a word in the filter.

Fixed problem with UTF version of the script associated with incorrect display of the calendar date picker in adminpaneli script.

Fixed problem with incorrect editing of additional fields in the user profile adminpaneli script, at which the incorrect saving of information containing in addition to plain text specials character.

Fixed an issue where bookmarks could be deleting the user when manipulating bookmarks and the transition to non-existent page.

Fixed an issue where, in some cases not to cache the contents of the tag (custom), despite the clear indication of caching for the tag.

Fixed the previously declared and small mistakes in the script.

Read more everything in detail ... http://dle-news.ru/


More..Online Data Entry Jobs / A to Z Download: http://freedownloada2z.blogspot.com/