- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: how can i launch on a research on apache&php?
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2003 09:11 PM
09-27-2003 09:11 PM
how can i launch on a research on apache&php?
My machine is HP w/s C3600, system is 11i. i have install apache2.0.46;php4.2.3;gcc3.2.
now,how can i test these? (i never play these before)
tks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2003 09:32 PM
09-27-2003 09:32 PM
Re: how can i launch on a research on apache&php?
Or anyone have a demo can let me know?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2003 01:52 AM
09-29-2003 01:52 AM
Re: how can i launch on a research on apache&php?
To start with php, the best is to read the documentation :
http://www.php.net/download-docs.php
But before all, check your php install if all is working :
create a file call info.php with :
phpinfo();
?>
save this file in your apache directory tree,
browse this page through your favorite browser,
you should see the config of php + variables .....
If it doesn't work, you have a trouble in your install/config (probably the apache config file : httpd.conf).
Concerning gcc, it's absolutly not the same.
a simple helloworld.c program is enough to check if gcc can compile !
post here all the details/errors if you have some, and read the INSTALL file for PHP and Apache.
hth
Benoit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2003 01:21 PM
09-29-2003 01:21 PM
Re: how can i launch on a research on apache&php?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2003 01:33 PM
09-29-2003 01:33 PM
Re: how can i launch on a research on apache&php?
i donot this page is which???can u tell me definitely?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2003 07:38 PM
09-29-2003 07:38 PM
Re: how can i launch on a research on apache&php?
http://yourserver
check on your server that apache is running :
#ps -ef | grep http
If it's ok, check that it's listening on http port :
#netstat -an | grep 80
If you have on your browser a page about apache, then it means your apache is working properly.
remember : to start apache:
#./apachectl start
In case of trouble in starting, check logs.
If apache is ok,you can create the file info.php in the same dir as this apache page (check in httpd.conf where is this page).
You should also uncomment some lines about php (read the doc) in httpd.conf.
Then at this level you should be able to run this script :
http://yourserver/info.php
in case of trouble, check messages in log files....
if you have on your browser :
phpinfo();
?>
then it means that php is not interpreted through apache ! check installation and httpd.conf...
It's very short, and I have no idea about your config, post a message + logs if you have some troubles.
hth
Benoit