473,399 Members | 3,919 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

Installation of php and mysql

My attempt to install php and mysql to my computer failed. There are
errors with both installations. I believe the problem is with my
computer or the Windows XP in it. My computer is an old and cheap
laptop Dell. It has been in trouble for a long time.

I've been learning php on my web site for some time, and wonder
whether or not I can do mysql on web site without installing the
software to computer.

Thanks.
Dung Ping

Dec 9 '05 #1
8 5315
Dung Ping wrote:
My attempt to install php and mysql to my computer failed. There are
errors with both installations. I believe the problem is with my
computer or the Windows XP in it. My computer is an old and cheap
laptop Dell. It has been in trouble for a long time.

I've been learning php on my web site for some time, and wonder
whether or not I can do mysql on web site without installing the
software to computer.

Thanks.
Dung Ping


Well, this kind of questions will get you nowhere.
XP sucks, we know that all, but the reason your installation is not ok could
very well be your fault. Hard to say.
Why did they fail?
What did you get going and what not?
Which installguide did you follow?
Did you read what php says about installing on www.php.net?
Did you install ISAPI or CGI?
Did you add the needed configuration to the IIS?
etc. etc.

Get the picture?
How can we help if you just say it doesn't work??

Regards,
Erwin Moller
Dec 9 '05 #2
On 8 Dec 2005 16:31:06 -0800, in comp.lang.php "Dung Ping"
<du*******@yahoo.com> wrote:
| My attempt to install php and mysql to my computer failed. There are
| errors with both installations. I believe the problem is with my
| computer or the Windows XP in it. My computer is an old and cheap
| laptop Dell. It has been in trouble for a long time.
If the machine is unreliable then I suggest that you backup all your
files. Reformat the hard drive and reinstall all your software. (You
machine will probably run faster too).

You also don't say whether it is XP Home or XP Pro. XP Home doesn't
come with IIS (web server).
| I've been learning php on my web site for some time, and wonder
| whether or not I can do mysql on web site without installing the
| software to computer.
|
| Thanks.
| Dung Ping

---------------------------------------------------------------
jn******@yourpantsyahoo.com.au : Remove your pants to reply
---------------------------------------------------------------
Dec 9 '05 #3
Erwin Moller wrote:
Dung Ping wrote:
My attempt to install php and mysql to my computer failed. There are
errors with both installations. I believe the problem is with my
computer or the Windows XP in it. My computer is an old and cheap
laptop Dell. It has been in trouble for a long time.

I've been learning php on my web site for some time, and wonder
whether or not I can do mysql on web site without installing the
software to computer.

Thanks.
Dung Ping
Well, this kind of questions will get you nowhere.
XP sucks, we know that all, but the reason your installation is not ok could
very well be your fault. Hard to say.
Why did they fail?
What did you get going and what not?
Which installguide did you follow?
Did you read what php says about installing on www.php.net?
Did you install ISAPI or CGI?
Did you add the needed configuration to the IIS?
etc. etc.

Get the picture?
How can we help if you just say it doesn't work??


Thanks all for help. My OS is Windows XP home version. The PHP is
downloaded from www.php.net. After downloading the files, an icon, 'PHP
5.1.1. Installer', appears on the desktop. I click it, and follow the
steps through. After the installing starts for a while, a message
appears on the monitor. It reads:

Error trying access the local web service: GetObject failed. You will
need to manually configure IIS via management console.

But when clicking OK, I am told that the installation has completed. I
don't think so. If yes, another icon should appear on the desktop.

Thanks again.
Dung Ping

Regards,
Erwin Moller


Dec 9 '05 #4
Dung Ping wrote:
Erwin Moller wrote:
Dung Ping wrote:

My attempt to install php and mysql to my computer failed. There are
errors with both installations. I believe the problem is with my
computer or the Windows XP in it. My computer is an old and cheap
laptop Dell. It has been in trouble for a long time.

I've been learning php on my web site for some time, and wonder
whether or not I can do mysql on web site without installing the
software to computer.

Thanks.
Dung Ping


Well, this kind of questions will get you nowhere.
XP sucks, we know that all, but the reason your installation is not ok could
very well be your fault. Hard to say.
Why did they fail?
What did you get going and what not?
Which installguide did you follow?
Did you read what php says about installing on www.php.net?
Did you install ISAPI or CGI?
Did you add the needed configuration to the IIS?
etc. etc.

Get the picture?
How can we help if you just say it doesn't work??

Thanks all for help. My OS is Windows XP home version. The PHP is
downloaded from www.php.net. After downloading the files, an icon, 'PHP
5.1.1. Installer', appears on the desktop. I click it, and follow the
steps through. After the installing starts for a while, a message
appears on the monitor. It reads:

Error trying access the local web service: GetObject failed. You will
need to manually configure IIS via management console.


Sounds like your do /not/ have a webserver. Since you are running XP
Home a consumer based workstation OS a webserver is not installed by
default. You need some sort of a webserver installed before this will work.

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Dec 9 '05 #5
Dung Ping wrote:

<snip>
Thanks all for help. My OS is Windows XP home version.


Ok, that is your problem.
While XP sucks in general, XP Home even sucks harder.
For starters, it doesn't have IIS (a webserver).

But, we also have good news.
The good news is called Apache.
It is a webserver, much better than IIS, much safer too.
And it is open sourced, free. :-)

Google for Apache, and start installing that thing.
PHP can run under apache.
And apache/php can use mysql.
(You'll have to install mysql also of course)

Be sure you read a bit first, as you may want to have database and php
support compiled in too.

If memory serves me well, under windows you only need to uncomment some dll
in php.ini to get them available in Apache (like mysql and php).
Be sure you read the documentation.

Good luck.

Regards,
Erwin Moller
Dec 9 '05 #6
Erwin Moller wrote:
Dung Ping wrote:

<snip>
Thanks all for help. My OS is Windows XP home version.
Ok, that is your problem.
While XP sucks in general, XP Home even sucks harder.
For starters, it doesn't have IIS (a webserver).

But, we also have good news.
The good news is called Apache.
It is a webserver, much better than IIS, much safer too.
And it is open sourced, free. :-)

Google for Apache, and start installing that thing.
PHP can run under apache.
And apache/php can use mysql.
(You'll have to install mysql also of course)

Be sure you read a bit first, as you may want to have database and php
support compiled in too.

If memory serves me well, under windows you only need to uncomment some dll
in php.ini to get them available in Apache (like mysql and php).
Be sure you read the documentation.


My sincere appreciation again. I will try to install apache first,
then php and mysql.

Regards,
Dung Ping
Good luck.

Regards,
Erwin Moller


Dec 9 '05 #7
Dung Ping wrote:
Erwin Moller wrote:
Dung Ping wrote:

<snip>
Thanks all for help. My OS is Windows XP home version.


Ok, that is your problem.
While XP sucks in general, XP Home even sucks harder.
For starters, it doesn't have IIS (a webserver).

But, we also have good news.
The good news is called Apache.
It is a webserver, much better than IIS, much safer too.
And it is open sourced, free. :-)

Google for Apache, and start installing that thing.
PHP can run under apache.
And apache/php can use mysql.
(You'll have to install mysql also of course)

Be sure you read a bit first, as you may want to have database and php
support compiled in too.

If memory serves me well, under windows you only need to uncomment some dll
in php.ini to get them available in Apache (like mysql and php).
Be sure you read the documentation.

My sincere appreciation again. I will try to install apache first,
then php and mysql.


Apache is not to hard to setup, setup is done in a set of *.conf files
which are very heavily commented, the manuals is not too bad either ;-)
--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Dec 10 '05 #8
If you just want a working setup quickly, do yourself a favor and just
install WAMP. Works right out of the box, no config necessary. Once you
are more comfortable you can install the individual components. But you
will need a web server (Apache, IIS), PHP, and MySQL.

-Mark

"Dung Ping" <du*******@yahoo.com> wrote in message
news:11**********************@g14g2000cwa.googlegr oups.com...
My attempt to install php and mysql to my computer failed. There are
errors with both installations. I believe the problem is with my
computer or the Windows XP in it. My computer is an old and cheap
laptop Dell. It has been in trouble for a long time.

I've been learning php on my web site for some time, and wonder
whether or not I can do mysql on web site without installing the
software to computer.

Thanks.
Dung Ping

Dec 10 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Nick Keeling | last post by:
--=_48167406.4627091C Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit I am a MySQL newbie with a post installation problem. I have Linux Red Hat 9 with MySQL 4.0....
0
by: Anil Garg | last post by:
Hi, I am trying to install myql on redhat. mysql package used: mysql-3.23.52-unknown-freebsdelf4.6-i386.tar.gz While following the instructions in install document..when i run the follwing...
0
by: sanjay gupta | last post by:
Hi All, I have recently installes mysql -4.0.0.1 on my redhat 7.1 machine . After installing when enter into mysql it gives me message " Access denied for user root@local host .......using...
0
by: Chris Moy | last post by:
SEND-PR: -*- send-pr -*- SEND-PR: Lines starting with `SEND-PR' will be removed automatically, as SEND-PR: will all comments (text enclosed in `<' and `>'). SEND-PR: From: moyc To:...
0
by: niku | last post by:
Hello all. I'm trying to get mysql installed on OpenBSD 3.4. Unfortunately, it appeares that the port only installes the mysql-client, and one needs to install the -server package seperately. This...
0
by: Sunil | last post by:
Hello Friends, In MySQL features, it is mentioned that it supports localization/internationalization. I tried MySQL setup installation but doesn't prompt me for language selection for setup. Does...
0
by: Murphy | last post by:
I am currently migrating a db from SQL Server & MySQL and ? (front end yet to be decided upon) As I familiarise myself with MySQL populating tables etc can be quite clumbersome. After reading the...
1
by: aryan24 | last post by:
Hi, I am new to LINUX. I have down loaded MySQL-server-community-5.0.45-0.sles10.i586.rpm from the site and trying to install on suse linux 10.2. using this command #>rpm -i...
0
by: raaman rai | last post by:
hey guys, i have installed MySQL 5.0.45 on my machine but i cannot use it cus the installation is not complete due to the failure of MySQLInstanceConfig. In the last min of the installation i have a...
11
by: Robin S. | last post by:
I've used phpinfo() to confirm settings for mySQL on our host server, and it's not returning accurate info. phpinfo() returns a mySQL client API version of 3.23.54 (uselss for me), where as a...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.