RE: [PHP] help installing phpDocumentor

2009-02-24 Thread Bob McConnell
From: Jim Lucas
 
 I may be wrong, but I heard short tags were going the
  way of the Dodo bird as of PHP6.

This is not surprising. With the advent of XHTML, the short tag option
collides with another valid tag, ?xml. So that option has to be
turned off as soon as you need any XML in your pages. I'm in the process
of correcting that in more than 150 files in one project alone. There
are two other bigger projects that require the same treatment. All three
also make extensive use of magic quotes and register_globals, which are
likewise becoming extinct.

Which reminds me, where can I get a definitive list of all deprecated
features? In addition to identifying each feature, it should indicate
which release marked them deprecated, and which release will no longer
support them, if known.

Bob McConnell

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] help installing phpDocumentor

2009-02-24 Thread 9el
---
Use FreeOpenSourceSoftwares, Stop piracy, Let the developers live. Get
a Free CD of Ubuntu mailed to your door without any cost. Visit :
www.ubuntu.com
--


On Tue, Feb 24, 2009 at 7:51 PM, Bob McConnell r...@cbord.com wrote:

 From: Jim Lucas
 
  I may be wrong, but I heard short tags were going the
   way of the Dodo bird as of PHP6.

 This is not surprising. With the advent of XHTML, the short tag option
 collides with another valid tag, ?xml. So that option has to be
 turned off as soon as you need any XML in your pages. I'm in the process
 of correcting that in more than 150 files in one project alone. There
 are two other bigger projects that require the same treatment. All three
 also make extensive use of magic quotes and register_globals, which are
 likewise becoming extinct.


well if you wanna keep short tags.. then  ?php echo ?xml 
would be better idea.



 Which reminds me, where can I get a definitive list of all deprecated
 features? In addition to identifying each feature, it should indicate
 which release marked them deprecated, and which release will no longer
 support them, if known.

 Bob McConnell

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] help installing phpDocumentor

2009-02-24 Thread Ashley Sheridan
On Tue, 2009-02-24 at 08:51 -0500, Bob McConnell wrote:
 From: Jim Lucas
  
  I may be wrong, but I heard short tags were going the
   way of the Dodo bird as of PHP6.
 
 This is not surprising. With the advent of XHTML, the short tag option
 collides with another valid tag, ?xml. So that option has to be
 turned off as soon as you need any XML in your pages. I'm in the process
 of correcting that in more than 150 files in one project alone. There
 are two other bigger projects that require the same treatment. All three
 also make extensive use of magic quotes and register_globals, which are
 likewise becoming extinct.
 
 Which reminds me, where can I get a definitive list of all deprecated
 features? In addition to identifying each feature, it should indicate
 which release marked them deprecated, and which release will no longer
 support them, if known.
 
 Bob McConnell
 
php.net is the best place to find details on what is deprecated, but
afaik, it doesn't offer this in list form, but on each man page for a
function, etc. you could download the offline documentation and do a
search within all the files for the word 'deprecated'. ugly, but the
best way i know of.


Ash
www.ashleysheridan.co.uk


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] help installing phpDocumentor

2009-02-24 Thread Lewis Wright
Forgot to click reply all! Sorry.

-- Forwarded message --
From: Lewis Wright lewiswri...@gmail.com
Date: 2009/2/24
Subject: Re: [PHP] help installing phpDocumentor
To: a...@ashleysheridan.co.uk


Turn on notices and maybe even strict messages (in your development
environment), and PHP should warn you of any deprecated code.

2009/2/24 Ashley Sheridan a...@ashleysheridan.co.uk:
 On Tue, 2009-02-24 at 08:51 -0500, Bob McConnell wrote:
 From: Jim Lucas
 
  I may be wrong, but I heard short tags were going the
   way of the Dodo bird as of PHP6.

 This is not surprising. With the advent of XHTML, the short tag option
 collides with another valid tag, ?xml. So that option has to be
 turned off as soon as you need any XML in your pages. I'm in the process
 of correcting that in more than 150 files in one project alone. There
 are two other bigger projects that require the same treatment. All three
 also make extensive use of magic quotes and register_globals, which are
 likewise becoming extinct.

 Which reminds me, where can I get a definitive list of all deprecated
 features? In addition to identifying each feature, it should indicate
 which release marked them deprecated, and which release will no longer
 support them, if known.

 Bob McConnell

 php.net is the best place to find details on what is deprecated, but
 afaik, it doesn't offer this in list form, but on each man page for a
 function, etc. you could download the offline documentation and do a
 search within all the files for the word 'deprecated'. ugly, but the
 best way i know of.


 Ash
 www.ashleysheridan.co.uk


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] help installing phpDocumentor

2009-02-24 Thread Ashley Sheridan
On Tue, 2009-02-24 at 20:18 +, Lewis Wright wrote:
 Forgot to click reply all! Sorry.
 
 -- Forwarded message --
 From: Lewis Wright lewiswri...@gmail.com
 Date: 2009/2/24
 Subject: Re: [PHP] help installing phpDocumentor
 To: a...@ashleysheridan.co.uk
 
 
 Turn on notices and maybe even strict messages (in your development
 environment), and PHP should warn you of any deprecated code.
 
 2009/2/24 Ashley Sheridan a...@ashleysheridan.co.uk:
  On Tue, 2009-02-24 at 08:51 -0500, Bob McConnell wrote:
  From: Jim Lucas
  
   I may be wrong, but I heard short tags were going the
way of the Dodo bird as of PHP6.
 
  This is not surprising. With the advent of XHTML, the short tag option
  collides with another valid tag, ?xml. So that option has to be
  turned off as soon as you need any XML in your pages. I'm in the process
  of correcting that in more than 150 files in one project alone. There
  are two other bigger projects that require the same treatment. All three
  also make extensive use of magic quotes and register_globals, which are
  likewise becoming extinct.
 
  Which reminds me, where can I get a definitive list of all deprecated
  features? In addition to identifying each feature, it should indicate
  which release marked them deprecated, and which release will no longer
  support them, if known.
 
  Bob McConnell
 
  php.net is the best place to find details on what is deprecated, but
  afaik, it doesn't offer this in list form, but on each man page for a
  function, etc. you could download the offline documentation and do a
  search within all the files for the word 'deprecated'. ugly, but the
  best way i know of.
 
 
  Ash
  www.ashleysheridan.co.uk
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 
 
And top posting too - special kinds of programmers hell have been
reserved for less! ;)


Ash
www.ashleysheridan.co.uk


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] help installing phpDocumentor

2009-02-24 Thread Lewis Wright
I'm sorry, Gmail makes me do it!

2009/2/24 Ashley Sheridan a...@ashleysheridan.co.uk:
 On Tue, 2009-02-24 at 20:18 +, Lewis Wright wrote:
 Forgot to click reply all! Sorry.

 -- Forwarded message --
 From: Lewis Wright lewiswri...@gmail.com
 Date: 2009/2/24
 Subject: Re: [PHP] help installing phpDocumentor
 To: a...@ashleysheridan.co.uk


 Turn on notices and maybe even strict messages (in your development
 environment), and PHP should warn you of any deprecated code.

 2009/2/24 Ashley Sheridan a...@ashleysheridan.co.uk:
  On Tue, 2009-02-24 at 08:51 -0500, Bob McConnell wrote:
  From: Jim Lucas
  
   I may be wrong, but I heard short tags were going the
    way of the Dodo bird as of PHP6.
 
  This is not surprising. With the advent of XHTML, the short tag option
  collides with another valid tag, ?xml. So that option has to be
  turned off as soon as you need any XML in your pages. I'm in the process
  of correcting that in more than 150 files in one project alone. There
  are two other bigger projects that require the same treatment. All three
  also make extensive use of magic quotes and register_globals, which are
  likewise becoming extinct.
 
  Which reminds me, where can I get a definitive list of all deprecated
  features? In addition to identifying each feature, it should indicate
  which release marked them deprecated, and which release will no longer
  support them, if known.
 
  Bob McConnell
 
  php.net is the best place to find details on what is deprecated, but
  afaik, it doesn't offer this in list form, but on each man page for a
  function, etc. you could download the offline documentation and do a
  search within all the files for the word 'deprecated'. ugly, but the
  best way i know of.
 
 
  Ash
  www.ashleysheridan.co.uk
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 

 And top posting too - special kinds of programmers hell have been
 reserved for less! ;)


 Ash
 www.ashleysheridan.co.uk



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] help installing phpDocumentor

2009-02-24 Thread Bob McConnell
From: Lewis Wright
 
 Turn on notices and maybe even strict messages (in your development
 environment), and PHP should warn you of any deprecated code.

Easier said than done. I don't have an IDE available. I have tried the
Komodo editor and am now playing with Eclipse/PDT, but neither of those
comes with a local interpreter.

My workstation is Win-XPPro and the development/test server is Apache
2.0.55 running on a RHEL 5 VM in an ESX server farm. Each project gets a
set of virtual domains and matching directories. There is also a unique
base directory for each code release, so I don't even know if I can
figure out how to map a debugger into that environment.

Currently I use WinSCP to copy files to my home directory and log in
with Putty to move them to the target directory. But it is running PHP
5.2.3, which I don't think will tell me much about the newer releases.

I have asked, but we don't have a process in place to update that.
Sometime in the _near_ future I have to investigate whether there are
security fixes since then that we should get.

Bob McConnell

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] help installing phpDocumentor

2009-02-24 Thread Lewis Wright
2009/2/24 Bob McConnell r...@cbord.com:
 From: Lewis Wright

 Turn on notices and maybe even strict messages (in your development
 environment), and PHP should warn you of any deprecated code.

 Easier said than done. I don't have an IDE available. I have tried the
 Komodo editor and am now playing with Eclipse/PDT, but neither of those
 comes with a local interpreter.

 My workstation is Win-XPPro and the development/test server is Apache
 2.0.55 running on a RHEL 5 VM in an ESX server farm. Each project gets a
 set of virtual domains and matching directories. There is also a unique
 base directory for each code release, so I don't even know if I can
 figure out how to map a debugger into that environment.

 Currently I use WinSCP to copy files to my home directory and log in
 with Putty to move them to the target directory. But it is running PHP
 5.2.3, which I don't think will tell me much about the newer releases.

 I have asked, but we don't have a process in place to update that.
 Sometime in the _near_ future I have to investigate whether there are
 security fixes since then that we should get.

 Bob McConnell

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



Well you don't have to have a test server in your IDE. In your on
Windows, try searching for WAMPserver. As for turning on errors, how
about:

if ($_SERVER['HTTP_HOST'] == '127.0.0.1'){
error_reporting(E_ALL | E_STRICT);
ini_set('display_errors', true);
}

Of course, if you're not running a test server on localhost, then
change 127.0.0.1 to your IP address.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] help installing phpDocumentor

2009-02-24 Thread Ashley Sheridan
On Tue, 2009-02-24 at 20:55 +, Lewis Wright wrote:
 2009/2/24 Bob McConnell r...@cbord.com:
  From: Lewis Wright
 
  Turn on notices and maybe even strict messages (in your development
  environment), and PHP should warn you of any deprecated code.
 
  Easier said than done. I don't have an IDE available. I have tried the
  Komodo editor and am now playing with Eclipse/PDT, but neither of those
  comes with a local interpreter.
 
  My workstation is Win-XPPro and the development/test server is Apache
  2.0.55 running on a RHEL 5 VM in an ESX server farm. Each project gets a
  set of virtual domains and matching directories. There is also a unique
  base directory for each code release, so I don't even know if I can
  figure out how to map a debugger into that environment.
 
  Currently I use WinSCP to copy files to my home directory and log in
  with Putty to move them to the target directory. But it is running PHP
  5.2.3, which I don't think will tell me much about the newer releases.
 
  I have asked, but we don't have a process in place to update that.
  Sometime in the _near_ future I have to investigate whether there are
  security fixes since then that we should get.
 
  Bob McConnell
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 
 
 Well you don't have to have a test server in your IDE. In your on
 Windows, try searching for WAMPserver. As for turning on errors, how
 about:
 
 if ($_SERVER['HTTP_HOST'] == '127.0.0.1'){
 error_reporting(E_ALL | E_STRICT);
 ini_set('display_errors', true);
 }
 
 Of course, if you're not running a test server on localhost, then
 change 127.0.0.1 to your IP address.
 
Or, as an alternative to the wamp stack, easyphp is quite good these
days (you know longer have to know french to install it for one!)


Ash
www.ashleysheridan.co.uk


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] help installing phpDocumentor

2009-02-23 Thread jim white
I have tried to install phpDocumentor, but am having problems getting it 
to run. Finding install directions has so far eluded me. Are there any 
installation instructions for this?


Jim White



--
James (Jim) B. White
tel: (919)-380-9615
homepage: http://jimserver.net/ 



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] help installing phpDocumentor

2009-02-23 Thread Jim Lucas
jim white wrote:
 I have tried to install phpDocumentor, but am having problems getting it
 to run. Finding install directions has so far eluded me. Are there any
 installation instructions for this?
 
 Jim White
 
 
 

searching google for install phpDocumentor

first result is this

http://manual.phpdoc.org/HTMLSmartyConverter/HandS/phpDocumentor/tutorial_phpDocumentor.quickstart.pkg.html

Is this what you are looking for?

-- 
Jim Lucas

   Some men are born to greatness, some achieve greatness,
   and some have greatness thrust upon them.

Twelfth Night, Act II, Scene V
by William Shakespeare

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] help installing phpDocumentor

2009-02-23 Thread jim white

Jim Lucas wrote:

jim white wrote:
  

I have tried to install phpDocumentor, but am having problems getting it
to run. Finding install directions has so far eluded me. Are there any
installation instructions for this?

Jim White






searching google for install phpDocumentor

first result is this

http://manual.phpdoc.org/HTMLSmartyConverter/HandS/phpDocumentor/tutorial_phpDocumentor.quickstart.pkg.html

Is this what you are looking for?

  
No, I already found that. I have installed it according to the 
instructions. PEAR didn't work at all, and install using tar file only 
partly works.




--
James (Jim) B. White
tel: (919)-380-9615
homepage: http://jimserver.net/ 



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] help installing phpDocumentor

2009-02-23 Thread Jim Lucas
jim white wrote:
 Jim Lucas wrote:
 jim white wrote:
  
 I have tried to install phpDocumentor, but am having problems getting it
 to run. Finding install directions has so far eluded me. Are there any
 installation instructions for this?

 Jim White



 

 searching google for install phpDocumentor

 first result is this

 http://manual.phpdoc.org/HTMLSmartyConverter/HandS/phpDocumentor/tutorial_phpDocumentor.quickstart.pkg.html


 Is this what you are looking for?

   
 No, I already found that. I have installed it according to the
 instructions. PEAR didn't work at all, and install using tar file only
 partly works.
 
 
 

When you say PEAR didn't work.  What exactly do you mean.  If you received an 
error, what was it?

What exactly only partly worked with the tar installer?

-- 
Jim Lucas

   Some men are born to greatness, some achieve greatness,
   and some have greatness thrust upon them.

Twelfth Night, Act II, Scene V
by William Shakespeare

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] help installing phpDocumentor

2009-02-23 Thread jim white

Jim Lucas wrote:

jim white wrote:
  

Jim Lucas wrote:


jim white wrote:
 
  

I have tried to install phpDocumentor, but am having problems getting it
to run. Finding install directions has so far eluded me. Are there any
installation instructions for this?

Jim White






searching google for install phpDocumentor

first result is this

http://manual.phpdoc.org/HTMLSmartyConverter/HandS/phpDocumentor/tutorial_phpDocumentor.quickstart.pkg.html


Is this what you are looking for?

  
  

No, I already found that. I have installed it according to the
instructions. PEAR didn't work at all, and install using tar file only
partly works.






When you say PEAR didn't work.  What exactly do you mean.  If you received an 
error, what was it?

What exactly only partly worked with the tar installer?

  
It seems part of my problem, at least with the tar install, was not 
setting my directory permissions so it could write the files. PEAR I 
will skip since I almost have it working using the tar file. I have 
tried creating docs with HTML:Smarty:default which works, but for 
HTML:frames:default at the file level I get *Parse error*: syntax error, 
unexpected T_STRING.


Also, if I want to download the other formats, where do you install them?

Jim


--
James (Jim) B. White
tel: (919)-380-9615
homepage: http://jimserver.net/ 



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] help installing phpDocumentor

2009-02-23 Thread Jim Lucas
Back on the list...

jim white wrote:
 Jim Lucas wrote:
 jim white wrote:
  
 Jim Lucas wrote:

 jim white wrote:
  
  
 I have tried to install phpDocumentor, but am having problems
 getting it
 to run. Finding install directions has so far eluded me. Are there any
 installation instructions for this?

 Jim White



 
 searching google for install phpDocumentor

 first result is this

 http://manual.phpdoc.org/HTMLSmartyConverter/HandS/phpDocumentor/tutorial_phpDocumentor.quickstart.pkg.html



 Is this what you are looking for?

 
 No, I already found that. I have installed it according to the
 instructions. PEAR didn't work at all, and install using tar file only
 partly works.



 

 When you say PEAR didn't work.  What exactly do you mean.  If you
 received an error, what was it?

 What exactly only partly worked with the tar installer?

   
 Here is my problem.
 
 ?xml version=1.0 encoding=iso-8859-1?
 
 Need to look into turning this off or setting my web server to parse it
 correctly.
 
 Jim
 
 
 

Best bet would be to tell your system to not use short tags.

That is where your parse error is coming from.

Or, assuming that the above line is in an included file, change it to

?
echo '?xml version=1.0 encoding=iso-8859-1?';
?

or something similar

But, if it were me, I would disabled short tags.

I may be wrong, but I heard short tags were going the way of the Dodo bird as 
of PHP6.

-- 
Jim Lucas

   Some men are born to greatness, some achieve greatness,
   and some have greatness thrust upon them.

Twelfth Night, Act II, Scene V
by William Shakespeare

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] help installing phpDocumentor

2009-02-23 Thread jim white

Jim Lucas wrote:

Back on the list...

jim white wrote:
  

Jim Lucas wrote:


jim white wrote:
 
  

Jim Lucas wrote:
   


jim white wrote:
 
 
  

I have tried to install phpDocumentor, but am having problems
getting it
to run. Finding install directions has so far eluded me. Are there any
installation instructions for this?

Jim White






searching google for install phpDocumentor

first result is this

http://manual.phpdoc.org/HTMLSmartyConverter/HandS/phpDocumentor/tutorial_phpDocumentor.quickstart.pkg.html



Is this what you are looking for?


  

No, I already found that. I have installed it according to the
instructions. PEAR didn't work at all, and install using tar file only
partly works.






When you say PEAR didn't work.  What exactly do you mean.  If you
received an error, what was it?

What exactly only partly worked with the tar installer?

  
  

Here is my problem.

?xml version=1.0 encoding=iso-8859-1?

Need to look into turning this off or setting my web server to parse it
correctly.

Jim






Best bet would be to tell your system to not use short tags.

That is where your parse error is coming from.

Or, assuming that the above line is in an included file, change it to

?
echo '?xml version=1.0 encoding=iso-8859-1?';
?

or something similar

But, if it were me, I would disabled short tags.

I may be wrong, but I heard short tags were going the way of the Dodo bird as 
of PHP6.

  

Thanks, all looks good now!

Jim

--
James (Jim) B. White
tel: (919)-380-9615
homepage: http://jimserver.net/ 



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Help installing on Win2003 server?

2005-07-11 Thread Grosz, Steve (IPG IT)
Can someone tell me where I can find some detailed instructions on how
to install PHP on a Win2003 Server?  I've tried to install it using the
PHP instructions, but it doesn't seem to be working, think I'm missing
something.
 
Thanks.


RE: [PHP] Help installing on Win2003 server?

2005-07-11 Thread Jay Blanchard
[snip]
Can someone tell me where I can find some detailed instructions on how
to install PHP on a Win2003 Server?  I've tried to install it using the
PHP instructions, but it doesn't seem to be working, think I'm missing
something.
[/snip]

Did you install Apache?

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Help installing on Win2003 server?

2005-07-11 Thread Jay Blanchard
[snip]
No, this is on a IIS6 install 
[/snip]

Have you read this...
http://us2.php.net/manual/en/install.windows.iis.php ?

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Help installing on Win2003 server?

2005-07-11 Thread Grosz, Steve (IPG IT)
 Yes, I have looked at that info, but am still having a problem.

-Original Message-
From: Jay Blanchard [mailto:[EMAIL PROTECTED] 
Sent: Monday, July 11, 2005 12:39 PM
To: Grosz, Steve (IPG IT); php-general@lists.php.net
Subject: RE: [PHP] Help installing on Win2003 server?

[snip]
No, this is on a IIS6 install
[/snip]

Have you read this...
http://us2.php.net/manual/en/install.windows.iis.php ?

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Help installing on Win2003 server?

2005-07-11 Thread John Nichel

Grosz, Steve (IPG IT) wrote:

 Yes, I have looked at that info, but am still having a problem.

snip

And that problem is?  Error messages?  Logs?

--
John C. Nichel
ÜberGeek
KegWorks.com
716.856.9675
[EMAIL PROTECTED]

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Help installing on Win2003 server?

2005-07-11 Thread Grosz, Steve (IPG IT)
I get a message in the browser saying it can't find the file, will find 
standard .htm or .cfm files, but when I try to browse to a .php file, nothing. 

-Original Message-
From: John Nichel [mailto:[EMAIL PROTECTED] 
Sent: Monday, July 11, 2005 1:39 PM
To: php-general@lists.php.net
Subject: Re: [PHP] Help installing on Win2003 server?

Grosz, Steve (IPG IT) wrote:
  Yes, I have looked at that info, but am still having a problem.
snip

And that problem is?  Error messages?  Logs?

--
John C. Nichel
ÜberGeek
KegWorks.com
716.856.9675
[EMAIL PROTECTED]

--
PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: 
http://www.php.net/unsub.php

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Help installing on Win2003 server?

2005-07-11 Thread Richard Lynch
On Mon, July 11, 2005 12:43 pm, Grosz, Steve (IPG IT) said:
 I get a message in the browser saying it can't find the file, will find
 standard .htm or .cfm files, but when I try to browse to a .php file,
 nothing.

What is the EXACT error message?...

An error message isn't nothing -- It's an error message.

But of the 3,234,689 possible error messages you are seeing, it's hard to
tell which one you've got.

-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Help installing on Fedora 2

2004-07-02 Thread David Bevan
Hi Everyone,
 
I'm finally making the switch from Windows to Linux for development and
I've run into a problem.  I've got Apache, MySql, and PHP (I think, all
the files look like there in the right places) installed.  However I can
only get Apache and MySql up and running, I can't seem to figure out
what went wrong with PHP.  Has anyone had similar problems or know where
I can look for documentation specific to the Fedora flavor of Linux?
I've looked/gone through the docs on the PHP and Redhat sites but I must
be missing something.  Any help would be greatly appreciated.
 

Regards,
David Bevan

GetAnyIdeas Web Design
P. 416.452.9410
F. 416.570.4529
E. [EMAIL PROTECTED]
W.  http://www.getanyideas.com/ http://www.getanyideas.com

 


[PHP] Help installing imagick

2004-06-06 Thread Robert Duran
PHP 4.3.6
Image Magick 5.5.7
imagick 0.9.10
OS: Mac OS X (10.3.4)
  I'm trying to install imagick so that I can use ImageMagick functions 
in PHP.  I was using GD, but I need to load images from TIFF and write 
thumbnails in jpeg with added text.  I had it all working with jpegs, 
but got stumped on reading in full sized TIFF images with GD.

  I've been using PHP 4.3.6 for a while and have successfully worked 
with GD and installed a module for openbase support.   I'm totally 
stumped with imagick however.  It seems I just can't get PHP to 
recognize that the imagick module is installed.
  The installation instructions include:

1) make sure the path to Magick-config (the ImageMagick configuration
   script) is in your PATH environment variable
2) cd /usr/src/php/ext
3) untar the imagick tar
4) if the directory created is anything other then imagick, rename it to
   imagick
5) cd /usr/src/php/ext/imagick
6) phpize
7) cd /usr/src/php
8) rm ./configure
9) ./buildconf
10) run configure as you normally would and add --with-imagick
If Imagemagick is installed in a non standard dir, add this dir to 
--with-im
agick=dir
If you want GraphicsMagick instead of ImageMagick as backend, add 
--with-ima
gick-gm
11) make
12) make install

  When I go thru these steps, phpinfo shows no reference to imagick.  
Yes, I used --with-imagick and tried --with-imagick=dir as well.
  I've noticed when I rebuild the configure file, there is no reference 
in it for imagick.  Conversely, there ARE references for my openbase 
module, so I am assuming the problem is in the module installation 
itself (i.e. telling php that the module exists).  Is that the job of 
phpize?

  Any help would be appreciated.
Robert
p.s. During the install process I never got errors, but did get a few 
warnings that look like they are just complaining about doing things 
the old way:

./buildconf --force
Forcing buildconf
using default Zend directory
buildconf: checking installation...
buildconf: autoconf version 2.57 (ok)
buildconf: Your version of autoconf likely contains buggy cache code.
   Running cvsclean for you.
   To avoid this, install autoconf-2.13 and automake-1.5.
buildconf: libtool version 1.5 (ok)
rebuilding configure
rebuilding main/php_config.h.in
WARNING: Using auxiliary files such as `acconfig.h', `config.h.bot'
WARNING: and `config.h.top', to define templates for `config.h.in'
WARNING: is deprecated and discouraged.
WARNING: Using the third argument of `AC_DEFINE' and
WARNING: `AC_DEFINE_UNQUOTED' allows to define a template without
WARNING: `acconfig.h':
WARNING:   AC_DEFINE([NEED_MAIN], 1,
WARNING: [Define if a function `main' is needed.])
WARNING: More sophisticated templates can also be produced, see the
WARNING: documentation.
-
Robert Duran
[EMAIL PROTECTED]
-
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] Help installing imagick

2004-06-06 Thread Galen
Hey, I hope I'm not stating the obvious, but last time I used 
ImageMagick (5.5.7 - in my receipts folder, I just checked) for use 
with PHP under Mac OS X, I just downloaded a package from 
http://entropy.ch/ and installed it and life was good. I think it's 
still up for download. No messing with tar or anything else - just 
simple, straightforward GUI installation.

Also, fink ( http://fink.sf.net/ ) can install ImageMagick for you. 
Personally, unless you have special needs, I would say to go for the 
.pkg installed from entropy.ch, but whatever works for you.

As far as the specific process you're working on, if you really want 
_that_ installation, somebody else will have to tell you how to make it 
work. I don't know the specific process off hand.

-Galen
On Jun 6, 2004, at 5:03 PM, Robert Duran wrote:
PHP 4.3.6
Image Magick 5.5.7
imagick 0.9.10
OS: Mac OS X (10.3.4)
  I'm trying to install imagick so that I can use ImageMagick 
functions in PHP.  I was using GD, but I need to load images from TIFF 
and write thumbnails in jpeg with added text.  I had it all working 
with jpegs, but got stumped on reading in full sized TIFF images with 
GD.

  I've been using PHP 4.3.6 for a while and have successfully worked 
with GD and installed a module for openbase support.   I'm totally 
stumped with imagick however.  It seems I just can't get PHP to 
recognize that the imagick module is installed.
  The installation instructions include:

1) make sure the path to Magick-config (the ImageMagick configuration
   script) is in your PATH environment variable
2) cd /usr/src/php/ext
3) untar the imagick tar
4) if the directory created is anything other then imagick, rename it 
to
   imagick
5) cd /usr/src/php/ext/imagick
6) phpize
7) cd /usr/src/php
8) rm ./configure
9) ./buildconf
10) run configure as you normally would and add --with-imagick
If Imagemagick is installed in a non standard dir, add this dir to 
--with-im
agick=dir
If you want GraphicsMagick instead of ImageMagick as backend, add 
--with-ima
gick-gm
11) make
12) make install

  When I go thru these steps, phpinfo shows no reference to imagick.  
Yes, I used --with-imagick and tried --with-imagick=dir as well.
  I've noticed when I rebuild the configure file, there is no 
reference in it for imagick.  Conversely, there ARE references for my 
openbase module, so I am assuming the problem is in the module 
installation itself (i.e. telling php that the module exists).  Is 
that the job of phpize?

  Any help would be appreciated.
Robert
p.s. During the install process I never got errors, but did get a few 
warnings that look like they are just complaining about doing things 
the old way:

./buildconf --force
Forcing buildconf
using default Zend directory
buildconf: checking installation...
buildconf: autoconf version 2.57 (ok)
buildconf: Your version of autoconf likely contains buggy cache code.
   Running cvsclean for you.
   To avoid this, install autoconf-2.13 and automake-1.5.
buildconf: libtool version 1.5 (ok)
rebuilding configure
rebuilding main/php_config.h.in
WARNING: Using auxiliary files such as `acconfig.h', `config.h.bot'
WARNING: and `config.h.top', to define templates for `config.h.in'
WARNING: is deprecated and discouraged.
WARNING: Using the third argument of `AC_DEFINE' and
WARNING: `AC_DEFINE_UNQUOTED' allows to define a template without
WARNING: `acconfig.h':
WARNING:   AC_DEFINE([NEED_MAIN], 1,
WARNING: [Define if a function `main' is needed.])
WARNING: More sophisticated templates can also be produced, see the
WARNING: documentation.
-
Robert Duran
[EMAIL PROTECTED]
-
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] Help installing Apache please

2002-07-23 Thread Varsha Agarwal

Hi,
Someone please tell me how to install apache on redhat
linux.
-Varsha

__
Do You Yahoo!?
Yahoo! Health - Feel better, live better
http://health.yahoo.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Help installing Apache please

2002-07-23 Thread Jason Wong

On Wednesday 24 July 2002 01:22, Varsha Agarwal wrote:
 Hi,
 Someone please tell me how to install apache on redhat
 linux.

This is neither an Apache list, nor a Redhat list. Best ask on the relevant 
list.

-- 
Jason Wong - Gremlins Associates - www.gremlins.com.hk
Open Source Software Systems Integrators
* Web Design  Hosting * Internet  Intranet Applications Development *

/*
Pyros of the world... IGNITE !!!
*/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] help installing php

2002-01-18 Thread Miles Thompson


If I remember correctly, when you install MySQL and Apache from rpm you get 
the binary version and no source is installed on your system.

It's been a while since I've looked for them, but there used to be a source 
rpm for MySQL at the MySQL site, and it took some digging to find it. Ditto 
for Apache.

Take this opportunity to install al three from source -- because you've 
decided where to put the files you won't be trying to guess where an rpm 
packager decided they should go. (I've had the same problem with .deb pkgs, 
but maybe that's because I don't know enough about dselect.)

For the Apache source file look for ABOUT_APACHE; for MySQL look for 
mit-pthreads. I believe those t wo will be relatively unique, certainly 
better than looking for README.

Regards - Miles Thompson

At 02:09 PM 1/18/2002 -0500, Juni Adi wrote:
On Thu, 17 Jan 2002, Anas Mughal wrote:

|I haven't seen any RPMs for PHP.
Yes there are RPMs for PHP (ftp.mirror.ac.uk)

|However, I have installed using the source. It works
|fine.
|Try to install the CGI version first. That is easier.
|Than, you could dive into the apache module stuff.

Ok, I'm now in the middle of installing it from
source code. But I'm not sure where the path to
apache and mysql source code to fill in :
./configure --with
apache=/path/to/apache_source_code --with
mysql=/path/to/mysql_source_code

I 'm even not I have the source code for the
two of them as I was instaling both apache and
mysql from rpms.

So, can you tell me to define the path for those
apache and mysql  so I can make the PHP work along
with apache and mysql as well? Or at least tell me
what indicate a source code directory (what files
are in). Maybe I can search it manually.


Regards
Juni Adi

|
|--- Juni Adi [EMAIL PROTECTED] wrote:
| Hello,
|
| I'm new to PHP (actually I'm just about to
| begin) and have problem with installing.
|
| I'm looking for version of PHP that will be
| suit to RH 6.2 and MySQL 3.23.47? (my RH package
| didn't include any php rpms).
| I've tried some version 4 rpms but always have
| error on dependency stuffs.
|
| So, can anybody point me sites where I can
| download the right rpms to work along with my
| stuffs? (I'd prefer RPMS because I've always been
| having trouble installing from source code).
|
| Cheers
| --
| +
| ||   Juni Adi  ||
| ||   Volunteers Alliance for Saving the Nature ||
| ||   www.arupa.or.id   ||
| +
|
|
| --
| PHP General Mailing List (http://www.php.net/)
| To unsubscribe, e-mail:
| [EMAIL PROTECTED]
| For additional commands, e-mail:
| [EMAIL PROTECTED]
| To contact the list administrators, e-mail:
| [EMAIL PROTECTED]
|
|
|
|=
|Anas Mughal
|[EMAIL PROTECTED]
|[EMAIL PROTECTED]
|Tel: 973-249-6665
|
|__
|Do You Yahoo!?
|Send FREE video emails in Yahoo! Mail!
|http://promo.yahoo.com/videomail/
|

--
+
||   Juni Adi  ||
||   Volunteers Alliance for Saving the Nature ||
||   www.arupa.or.id   ||
+


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] help installing php

2002-01-18 Thread R'twick Niceorgaw

I just installed Apache and PHP 4.1.1 on my home computer ( Red hat Linux
7.2) from source and they are isntalled without any problem.

If you have already installed apache, then find out the installation
directory ( probably /usr/local/apache) and then see if its bin directory is
in your path. If not add it.

then goto the bin directory and run ./httpd -l.
If you see a line called mod_so.c then you can install PHP as a DSO module
without the source code for Apache. Follow the steps below and it will work.

run configure in your PHP source dir as
./configure --with-apxs [ and rest of the modules you want to enable]
make
make install

If you are using PHP 4.1.1, it comes with builtin support for mysql and is
installed by default or you can run

./configure --with-apxs --with-mysql [ and rest of the modules you want to
enable]
if it says can not find path to apxs, then change the configuration to
./configure --with-apxs=path to apache/bin/apxs [ and rest of the modules
you want to enable]

where path to apache is where apache is installed ( probably
/usr/local/apache)

HTH
R'twick
- Original Message -
From: Juni Adi [EMAIL PROTECTED]
To: Anas Mughal [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Friday, January 18, 2002 2:09 PM
Subject: Re: [PHP] help installing php


 On Thu, 17 Jan 2002, Anas Mughal wrote:

 |I haven't seen any RPMs for PHP.
 Yes there are RPMs for PHP (ftp.mirror.ac.uk)

 |However, I have installed using the source. It works
 |fine.
 |Try to install the CGI version first. That is easier.
 |Than, you could dive into the apache module stuff.

 Ok, I'm now in the middle of installing it from
 source code. But I'm not sure where the path to
 apache and mysql source code to fill in :
 ./configure --with
 apache=/path/to/apache_source_code --with
 mysql=/path/to/mysql_source_code

 I 'm even not I have the source code for the
 two of them as I was instaling both apache and
 mysql from rpms.

 So, can you tell me to define the path for those
 apache and mysql  so I can make the PHP work along
 with apache and mysql as well? Or at least tell me
 what indicate a source code directory (what files
 are in). Maybe I can search it manually.


 Regards
 Juni Adi

 |
 |--- Juni Adi [EMAIL PROTECTED] wrote:
 | Hello,
 |
 | I'm new to PHP (actually I'm just about to
 | begin) and have problem with installing.
 |
 | I'm looking for version of PHP that will be
 | suit to RH 6.2 and MySQL 3.23.47? (my RH package
 | didn't include any php rpms).
 | I've tried some version 4 rpms but always have
 | error on dependency stuffs.
 |
 | So, can anybody point me sites where I can
 | download the right rpms to work along with my
 | stuffs? (I'd prefer RPMS because I've always been
 | having trouble installing from source code).
 |
 | Cheers
 | --
 | +
 | ||   Juni Adi  ||
 | ||   Volunteers Alliance for Saving the Nature ||
 | ||   www.arupa.or.id   ||
 | +
 |
 |
 | --
 | PHP General Mailing List (http://www.php.net/)
 | To unsubscribe, e-mail:
 | [EMAIL PROTECTED]
 | For additional commands, e-mail:
 | [EMAIL PROTECTED]
 | To contact the list administrators, e-mail:
 | [EMAIL PROTECTED]
 |
 |
 |
 |=
 |Anas Mughal
 |[EMAIL PROTECTED]
 |[EMAIL PROTECTED]
 |Tel: 973-249-6665
 |
 |__
 |Do You Yahoo!?
 |Send FREE video emails in Yahoo! Mail!
 |http://promo.yahoo.com/videomail/
 |

 --
 +
 ||   Juni Adi  ||
 ||   Volunteers Alliance for Saving the Nature ||
 ||   www.arupa.or.id   ||
 +


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] help installing php

2002-01-18 Thread mike cullerton

hi juni,

 although i totally agree with the folks who recommended you compile php
from source, maybe it's time you sat down :)

 compiling apache, mysql and php from source can tax even the greatest
patience the first time it is tried. hopefully, here's a couple things to
think about.

 create a directory where you store _all_ your source for everything you
compile. lots of folks use /usr/src and i'll assume that here. now, download
all the source tarballs you need into that directory and expand them all in
there. this should create subdirectories for everything. ie,

 /usr/src/apache_1.3.22
 /usr/src/php-4.1.0
 /usr/src/mysql-3.23.40

 it's possible that you may need other packages. only you will now what is
used on your machine. do you use snmp with php? gd? do y'all also use perl
with apache?

 you'll want to read the documentation that comes with _each_ package you
are compiling. especially apache. they know about php. there is lots of good
info in there. there are also many sites out there with tutorials on getting
these all to compile together. you'll need to decide if you want to compile
php as a static or dynamic module. static seems to compile easier for some
folks, but dynamic means in the future you only need to recompile php to
upgrade it (as opposed to recompiling everything like you are about to do :)

 the first time you do this, it could take hours just getting it all squared
away, and that doesn't necessarily include compile time. after that, it
should only take you a few minutes each time.

 to answer the specific question about apache source, if we assume the
directories above, then you would use ../apache_1.3.22.

 i recommend writing down everything it took to get it all working so you
have it for next time. the configure string might look something like

 ./configure \
--enable-track-vars \
--with-mysql=/usr/local \
--with-apache=/usr/src/apache_1.3.22 \
--enable-trans-sid \
--with-snmp \
--with-ftp \
--with-gd 

depending on what all you need from php.

hope this all helps,
mike


on 1/18/02 12:09 PM, Juni Adi at [EMAIL PROTECTED] wrote:

 Ok, I'm now in the middle of installing it from
 source code. But I'm not sure where the path to
 apache and mysql source code to fill in :
 ./configure --with
 apache=/path/to/apache_source_code --with
 mysql=/path/to/mysql_source_code
 
 I 'm even not I have the source code for the
 two of them as I was instaling both apache and
 mysql from rpms.
 
 So, can you tell me to define the path for those
 apache and mysql  so I can make the PHP work along
 with apache and mysql as well? Or at least tell me
 what indicate a source code directory (what files
 are in). Maybe I can search it manually.


 -- mike cullerton   michaelc at cullerton dot com



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] help installing php

2002-01-18 Thread Carl J Meyer


On Fri, 18 Jan 2002, Juni Adi wrote:
 
 Ok, I'm now in the middle of installing it from
 source code. But I'm not sure where the path to
 apache and mysql source code to fill in :
 ./configure --with
 apache=/path/to/apache_source_code --with
 mysql=/path/to/mysql_source_code
 
 I 'm even not I have the source code for the
 two of them as I was instaling both apache and
 mysql from rpms.

mysql should work fine with the bundled library.  
just use --with-mysql, no directory argument.

for apache, if you're not compiling the apache source you
should compile php as a shared apache module: use --with-apxs or
--with-apxs2 depending whether you're using Apache 1.x or 2.x.  

Carl

 
 |
 |--- Juni Adi [EMAIL PROTECTED] wrote:
 | Hello,
 | 
 | I'm new to PHP (actually I'm just about to
 | begin) and have problem with installing.  
 | 
 | I'm looking for version of PHP that will be
 | suit to RH 6.2 and MySQL 3.23.47? (my RH package
 | didn't include any php rpms).
 | I've tried some version 4 rpms but always have
 | error on dependency stuffs.
 | 
 | So, can anybody point me sites where I can
 | download the right rpms to work along with my
 | stuffs? (I'd prefer RPMS because I've always been
 | having trouble installing from source code).
 | 
 | Cheers
 | -- 
 | +
 | ||   Juni Adi  ||
 | ||   Volunteers Alliance for Saving the Nature ||   
 | ||   www.arupa.or.id   ||
 | +
 | 
 | 
 | -- 
 | PHP General Mailing List (http://www.php.net/)
 | To unsubscribe, e-mail:
 | [EMAIL PROTECTED]
 | For additional commands, e-mail:
 | [EMAIL PROTECTED]
 | To contact the list administrators, e-mail:
 | [EMAIL PROTECTED]
 | 
 |
 |
 |=
 |Anas Mughal
 |[EMAIL PROTECTED]
 |[EMAIL PROTECTED]
 |Tel: 973-249-6665
 |
 |__
 |Do You Yahoo!?
 |Send FREE video emails in Yahoo! Mail!
 |http://promo.yahoo.com/videomail/
 |
 
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] help installing php

2002-01-17 Thread Juni Adi

Hello,

I'm new to PHP (actually I'm just about to
begin) and have problem with installing.  

I'm looking for version of PHP that will be
suit to RH 6.2 and MySQL 3.23.47? (my RH package
didn't include any php rpms).
I've tried some version 4 rpms but always have
error on dependency stuffs.

So, can anybody point me sites where I can
download the right rpms to work along with my
stuffs? (I'd prefer RPMS because I've always been
having trouble installing from source code).

Cheers
-- 
+
||   Juni Adi  ||
||   Volunteers Alliance for Saving the Nature ||   
||   www.arupa.or.id   ||
+


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] help installing php

2002-01-17 Thread Anas Mughal

I haven't seen any RPMs for PHP.
However, I have installed using the source. It works
fine.
Try to install the CGI version first. That is easier.
Than, you could dive into the apache module stuff.




--- Juni Adi [EMAIL PROTECTED] wrote:
 Hello,
 
 I'm new to PHP (actually I'm just about to
 begin) and have problem with installing.  
 
 I'm looking for version of PHP that will be
 suit to RH 6.2 and MySQL 3.23.47? (my RH package
 didn't include any php rpms).
 I've tried some version 4 rpms but always have
 error on dependency stuffs.
 
 So, can anybody point me sites where I can
 download the right rpms to work along with my
 stuffs? (I'd prefer RPMS because I've always been
 having trouble installing from source code).
 
 Cheers
 -- 
 +
 ||   Juni Adi  ||
 ||   Volunteers Alliance for Saving the Nature ||   
 ||   www.arupa.or.id   ||
 +
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail:
 [EMAIL PROTECTED]
 For additional commands, e-mail:
 [EMAIL PROTECTED]
 To contact the list administrators, e-mail:
 [EMAIL PROTECTED]
 


=
Anas Mughal
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Tel: 973-249-6665

__
Do You Yahoo!?
Send FREE video emails in Yahoo! Mail!
http://promo.yahoo.com/videomail/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] help installing php

2002-01-17 Thread Miles Thompson

Juni,

Apache, MySQL and PHP are really well debugged when it comes to 
installation, and I found installation from source easier than messing with 
.rpms on RH systems and with dselect on Debian. The following article at 
DevShed has really good instructions:
http://www.devshed.com/Server_Side/PHP/SoothinglySeamless/page1.html

You can ignore the SSL stuff and certificates if you don't need them.

Regards - Miles Thompson

At 07:02 PM 1/17/2002 -0500, Juni Adi wrote:
Hello,

I'm new to PHP (actually I'm just about to
begin) and have problem with installing.

I'm looking for version of PHP that will be
suit to RH 6.2 and MySQL 3.23.47? (my RH package
didn't include any php rpms).
I've tried some version 4 rpms but always have
error on dependency stuffs.

So, can anybody point me sites where I can
download the right rpms to work along with my
stuffs? (I'd prefer RPMS because I've always been
having trouble installing from source code).

Cheers
--
+
||   Juni Adi  ||
||   Volunteers Alliance for Saving the Nature ||
||   www.arupa.or.id   ||
+


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] help installing php

2002-01-17 Thread Juni Adi

On Thu, 17 Jan 2002, Anas Mughal wrote:

|I haven't seen any RPMs for PHP.
Yes there are RPMs for PHP (ftp.mirror.ac.uk)

|However, I have installed using the source. It works
|fine.
|Try to install the CGI version first. That is easier.
|Than, you could dive into the apache module stuff.

Ok, I'm now in the middle of installing it from
source code. But I'm not sure where the path to
apache and mysql source code to fill in :
./configure --with
apache=/path/to/apache_source_code --with
mysql=/path/to/mysql_source_code

I 'm even not I have the source code for the
two of them as I was instaling both apache and
mysql from rpms.

So, can you tell me to define the path for those
apache and mysql  so I can make the PHP work along
with apache and mysql as well? Or at least tell me
what indicate a source code directory (what files
are in). Maybe I can search it manually.


Regards
Juni Adi

|
|--- Juni Adi [EMAIL PROTECTED] wrote:
| Hello,
| 
| I'm new to PHP (actually I'm just about to
| begin) and have problem with installing.  
| 
| I'm looking for version of PHP that will be
| suit to RH 6.2 and MySQL 3.23.47? (my RH package
| didn't include any php rpms).
| I've tried some version 4 rpms but always have
| error on dependency stuffs.
| 
| So, can anybody point me sites where I can
| download the right rpms to work along with my
| stuffs? (I'd prefer RPMS because I've always been
| having trouble installing from source code).
| 
| Cheers
| -- 
| +
| ||   Juni Adi  ||
| ||   Volunteers Alliance for Saving the Nature ||   
| ||   www.arupa.or.id   ||
| +
| 
| 
| -- 
| PHP General Mailing List (http://www.php.net/)
| To unsubscribe, e-mail:
| [EMAIL PROTECTED]
| For additional commands, e-mail:
| [EMAIL PROTECTED]
| To contact the list administrators, e-mail:
| [EMAIL PROTECTED]
| 
|
|
|=
|Anas Mughal
|[EMAIL PROTECTED]
|[EMAIL PROTECTED]
|Tel: 973-249-6665
|
|__
|Do You Yahoo!?
|Send FREE video emails in Yahoo! Mail!
|http://promo.yahoo.com/videomail/
|

-- 
+
||   Juni Adi  ||
||   Volunteers Alliance for Saving the Nature ||   
||   www.arupa.or.id   ||
+


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] help installing

2001-05-17 Thread McShen

i was trying to install php on windows 2k pro.
i got this message when i was trying to run the test scrpt

PHP CGI binary (\php) is not executable. Please compile PHP as a CGI
executable and try again. 

why is that?

and should i read the instruction for IIS 4.0+ (isapi) or  IIS 4.0+ (CGI)





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] HELP!. INstalling PHP4 on a Cobalt RAQ 2!

2001-01-29 Thread Nold, Mark


- 
Disclaimer: The information contained in this email is intended only for the
use of the person(s) to whom it is addressed and may be confidential or
contain legally privileged information. If you are not the intended
recipient you are hereby notified that any perusal, use, distribution,
copying or disclosure is strictly prohibited. If you have received this
email in error please immediately advise us by return email at
[EMAIL PROTECTED] and delete the email document without making a
copy. 

-
 
RE: 
 
checking for flex... lex
checking for yywrap in -ll... no
checking lex output file root... ./configure: lex: command not found
configure: error: cannot find output from lex; giving up

 
You could install flex and bison as Rasmus suggested. I found a similiar
problem on my Sun box. I found that all i had to do was include the path to
the "lex" executable in my $PATH. 
 
This is wierd because i though the "checking for flex... lex" actually would
have tested whether lex was there.
 
Hope this helps.
 
mn
 

Mark Nold
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 
Senior Consultant
 
Change is inevitable, except from vending machines. 

 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] HELP!. INstalling PHP4 on a Cobalt RAQ 2!

2001-01-20 Thread Rasmus Lerdorf

Can you install flex and bison?

On Sat, 20 Jan 2001, Trunkz Santai wrote:

 Hi Im trying to isntall PHP4 on my Raq 2 but Im not having much luck. I was
 wondering if someone here could assist me.

 I uploaded apache and configured it and it worked fine. Its running in
 /usr/local/apache-x.x.x

 I uploaded the php zipped binary by ftp to /home/sites/home
 then
 mv php-4.0.4.tar.gz /usr/local
 then I unpacked it


 gunzip php-4.0.4.tar.gz
 then
 tar vxf php-4.0.4.tar

 It unpacked fine. I changed firectories

 cd php-4.0.4

 I did the configure thing

 ./configure --with-mysql --with-apache=../apache_1.3.14 --enable-track-vars


 I pressed enter and it said loading config.cache and a long list of things
 came up. Then it ended and this was what I got.

 checking for working makeinfo... found
 checking whether to enable maintainer-specific portions of Makefiles... no
 checking host system type... mipsel-unknown-linux-gnu
 checking for gawk... gawk
 checking for bison... bison -y
 checking bison version... 1.25 (ok)
 checking for gcc... gcc
 checking whether the C compiler (gcc ) works... yes
 checking whether the C compiler (gcc ) is a cross-compiler... no
 checking whether we are using GNU C... yes
 checking whether gcc accepts -g... yes
 checking how to run the C preprocessor... gcc -E
 checking for AIX... no
 checking for gcc option to accept ANSI C... none needed
 checking for ranlib... ranlib
 checking whether gcc and cc understand -c and -o together... yes
 checking whether ln -s works... yes
 checking for flex... no
 checking for lex... no
 ./configure: flex: command not found
 checking for flex... lex
 checking for yywrap in -ll... no
 checking lex output file root... ./configure: lex: command not found
 configure: error: cannot find output from lex; giving up
 [root php-4.0.4]#


 If anyone can help me i would greatly appreciate it. Thanks.




 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]