answersLogoWhite

0


Best Answer

Visit the downloads section of the PHP website (see the related links), and find the PHP 5.2 download for your operating system. Install the package accordingly -- which is an entirely customized step, depending on your operating system.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you install PHP 5.2 on your server?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you install PHP on Unix?

To install from source, you may have to use ./configure make make install each in case the server is a unix server


Is it possible to install wamp server without php?

The principle of WAMP/LAMP server is that MySQL, Apache and PHP are staked in a neat package easy to install. However, it is easy to install only the components you need separately.


How do you install PHP on a memory stick?

You can install an entire web server on your flash drive with XAMPP Portable. http://portableapps.com/apps/development/xampp You will need an entire server (at least Apache and PHP) if you want to execute PHP scripts.


How do you install php on a windows based web server?

Just install wamp or xampp server for windows. They are both windows based web server. Other then that there is a module for php on IIS to download but I would recommend not going for that hassle


How run php program in wanp server in window?

Once you install wamp server. Any file with php extenstion like xyz.php you put in www folder will be executed as PHP file.


How do you run php programs?

You need to install PHP either on a pre built apache server such as xampp or download PHP directly from the website.


What is the server used to run PHP in Windows?

One of the Windows Server operating systems. PHP can be installed with Microsoft's IIS web server as an ISAPI filter, or you can install the WAMP server under Windows that contains the Apache web server, the PHP interpreter, and mySQL. There are others as well, such as the Xitami web server, etc., that work equally well with PHP under windows.


How run php?

I have provided you with a two links that will take you through how to install PHP on your computer and how to setup a server so you can run your PHP code. See the relevant link below


Does php run in Windows 7?

Php can run on windows 7, but it does not run directly on it. PHP is a server side-language that runs on Apache. So in order to use PHP on windows 7, you need to install Apache on it. You can do this by installing WAMP server on your windows 7 machine. PHP will automatically be available to you once installed.


How do you configure your system for Ajax and PHP?

== == == == 1. The first step is to install a webserver. If you haven't installed one already, you have two choices: either install each component separate or install an already packaged bundle. a) If you choose to install the bundle, there are many choices available to you. You can try Xampp or Wamp. Those two bundle will install for you Apache Web Server - a web server -, MySQL - a database server -, PHP - the programming language - and some other server related stuff such as an FTP server. When the installation is complete pass to the next step. b) If you choose to install the components separated, you'll need a web server, a database server and PHP. For the web server, the recommendation is Apache Web Server ( http://httpd.apache.org/download.cgi ). For PHP, taking the latest version is the best ( http://www.php.net/downloads.php ). For the database, MySQL is widely used with PHP and Apache ( http://dev.mysql.com/downloads/ ). 2. Determine if an AJAX framework will be used. If using a framework is chosen, the most common framework and jQuery ( http://jquery.com/ ) and Prototype ( http://www.prototypejs.org/ ). 3. Write your code! There is also an option if you don't want to learn AJAX and JavaScript. The xajax Project ( http://xajaxproject.org/ ) lets you write your code in PHP and translates it into AJAX for you.


Why does your browser try to save rather than open your PHP scripts?

PHP is a server-side scripting language, which means that scripts are interpreted and executed by the server before PHP pages are sent to the client (the browser). The server replaces PHP scripts with the output it obtains from their execution and then transmits to the client the output thus obtained. Hence, your browser cannot execute PHP scripts, but it can only request PHP pages from a server which runs the scripts. Because the server is what processes the script, PHP needs to be installed on the server for the server to be able to process PHP scripts. If PHP isn't installed, the server has no idea that "foo.php" is a PHP script so just sends it to the browser as an executable - in a way that forces the browser to prompt to download it. Consult your hosting provider's help for installing, setting up or enabling PHP. Alternatively, you can install it yourself if your host provides the permissions to (See the related questions for installation help). If your host does not provide PHP support, find another host.


How save PHP file in window?

Assuming you meant windows the OS then you should write it in a text editor such as notepad and save it with the extension .php. You then need to install a web server with PHP installed such as WAMP or XAMPP to run it.