Red Hat Linux 9.0 Clean Install
- The Whole Enchilada
Last updated: 5/21/03
PHP
Duplicated php.ini in /etc.
Used gedit to change post_max_size and upload_max_filesize to 200M. You
may want to set different values or leave the defaults to suite your requirements.
Here's my test page:
<html>
< head>
< title>PHP Test</title>
< /head>
< body>
< ?php echo "This is a PHP script and, by the way, PHP is UP!";
?>
< /body>
< /html>
Copied and pasted the above into a file named /home/lbyard/duxcw/test.php,
changed the group and owner to lbyard, and assigned 777 permissions.
Went to a browser window on the Windows Me computer and entered the following
in the Address box:
http://192.168.123.2/test.php
... and got:
This is a PHP script and, by the way, PHP is UP!
< Previous | Contents | Top | Next
- Perl >
|