- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: PHP and MySQL
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
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
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
тАО02-25-2005 04:30 AM
тАО02-25-2005 04:30 AM
How can I determine if I have PHP and/or MySQL installed ?
Thanks for any help !
Vern
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-25-2005 06:30 AM
тАО02-25-2005 06:30 AM
Re: PHP and MySQL
That would tell you if the rpm's are installed.
--Dave
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-25-2005 06:56 AM
тАО02-25-2005 06:56 AM
Re: PHP and MySQL
Seems that it found php but not mysql ?
Half way there :)
[veb@veb veb]$ rpm -qa |egrep -I "mysql|php"
php-4.3.8-1.1
php-ldap-4.3.8-1.1
php-mbstring-4.3.8-1.1
php-imap-4.3.8-1.1
[veb@veb veb]$
BTW I was able to write an embeded PHP script and it worked. It was echo: Hello World the output was Hello World.
Thanks; now how to enable MySQL ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-25-2005 09:20 AM
тАО02-25-2005 09:20 AM
Re: PHP and MySQL
Its probably on the fedora cd, pop the cd in the drive,
make sure its mounted,
Then search for a mysql rpm:
find /mnt/cdrom -name \*.rpm |grep -i mysql
When you find the rpm you need install it on the system:
rpm -Uvh
You may have to resolve some dependancies but they should be on the disks somewhere as well.
--Dave
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-25-2005 11:27 PM
тАО02-25-2005 11:27 PM
Re: PHP and MySQL
I didn't find MySQL on the Fedora Core 1 CD, and didn't find it on the loaded system. I did find it on another partition that boots up SuSE 9.
Thanks for your help; I think I can get there from here :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-26-2005 01:58 AM
тАО02-26-2005 01:58 AM
Re: PHP and MySQL
Put a php test file in the web root directory.
For example,edit file info.php that contain following content.
Visit URL http://YOUR_IP/info.php via web bowser.It works ,If you can saw php info page and mysql enable.
NiCK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-27-2005 01:56 AM
тАО02-27-2005 01:56 AM
Re: PHP and MySQL
PHP is running and working Ok. I downloaded the current MySQL .gz package and untar'd it at /var/www/mysql to test it. Self test passed all tests.
I'm not yet successful with the phpbb install however. It complains that the database is not supported, however MySQL 4.1.x (which I have) is selected in the phpbb install options.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-10-2005 07:40 AM
тАО03-10-2005 07:40 AM
Solutionhttp://apt.freshrpms.net/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-10-2005 07:54 AM
тАО03-10-2005 07:54 AM
Re: PHP and MySQL
Thank for the link. I downloaded the software and willhave a go at it.