[PHP] Re: install problems

2007-03-18 Thread Haydar TUNA
Hello,
  This is php.install question but I can help you. Two weeks ago, I 
faced same problem with Apache 2.2.4 and PHP 5.2.1 in Redhat Linux AS 4 
Update 3 operating system. I tried to install apache and php together but I 
faced to same problem. I tried to install PHP 5.1.6 and Apache 2.2.4, my 
problem could be solved.:)

-- 
Haydar TUNA
Republic Of Turkey - Ministry of National Education
Education Technology Department Ankara / TURKEY
Web: http://www.haydartuna.net

jekillen [EMAIL PROTECTED], haber iletisinde sunlari 
yazdi:[EMAIL PROTECTED]
 Hello;
 Well, this one I cannot seem to figure out:
 I installed Apache 1.3.37 with
 ./configure --enable-module=so --enable-module=rewrite --enable-shared=max
 Then tried to install
 php 5.2.1 --with-apxs=/usr/local/apache/bin etc etc

 libphp5.so is no where to be found. It sure is not
 in apache/libexec

 I saved the ./configure options in a file and had
 configure read from it. All seemed to go ok,
 no errors, bailouts. I can send that file if anyone
 thinks it may have the answer.

 The problem showed up when I tried to start apache and
 it would not start because it could not find libphp5.so

 OS: Freebsd 6.2
 (I know there is the ports system, I have install all of this successfully 
 on
  two other machines doing just untar, configure, make, make install. I had
  reasons for not dealing with ports)
 Any clues?
 Thanks in advance
 Jeff K 

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



Re: [PHP] Re: install problems

2007-03-18 Thread jekillen


On Mar 18, 2007, at 7:51 PM, Haydar TUNA wrote:


Hello,
  This is php.install question but I can help you. Two weeks 
ago, I

faced same problem with Apache 2.2.4 and PHP 5.2.1 in Redhat Linux AS 4
Update 3 operating system. I tried to install apache and php together 
but I
faced to same problem. I tried to install PHP 5.1.6 and Apache 2.2.4, 
my

problem could be solved.:)

Thanks, I still do have the 5.1.2 tarball. I will try that and see if 
it makes a dif.
I thought of stealing the file that is missing from another 
installation that is
very similar but decided against it because it was based on a different 
version
of php (5.2.1). And this file is in /usr/local/libexec instead of 
/usr/local/apache/libexec
(That actually be part of my problem; I.E. when I installed Apache I 
did not give
./configure a prefix because the install instructions said the default 
was /usr/local/apache.

And httpd.conf is expecting to find the stuff in /usr/local/libexec.)
Thanks again
trying again,
Jeff K

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



[PHP] Re: Install problems with PHP and GD

2001-05-07 Thread Daniel BI

If you're running the latest RH, the path should be /usr
anyway, issue:

find / -name gd.h

if the result is /usr/include/gd.h,
then the path should be /usr 

if you have somthing else, I guess you already
suppose what the path is.. :)

Daniel BI


-- 
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] PHP (re)install problems

2001-03-12 Thread Jason Bouwmeester

I just reformatted my computer and reinstalled:

Apache 1.3.14 Win32 r2
PHP 4.03pl1
mySQL 3.23.34 - Win

I copied over my mySWL database and my PHP files and I get the following
error:

Warning: Undefined variable: Titlesearch in
d:\apache\htdocs\bkhtml\movies.php on line 22

This is line 22 of movies.php:

print "form name=\"search\" method=\"get\"
action=\"movies/mysql_moviedb_search.php?Titlesearch=$Titlesearch\"\n";

I also get this error:

Warning: Use of undefined constant link - assumed 'link' in
d:\apache\htdocs\bkhtml\movies\mysql_movieindex.php on line 15

And this is lines 13-15 of mysql_movieindex.php:

$link = mysql_pconnect("localhost",$user,$pass);
if(!link)
die("Couldn't connect to mySQL");

It still displays what it is supposed to, so it is connecting to and
accessing the database, I just get these extra warnings that I never got
before.

TIA,
jb


-- 
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] PHP (re)install problems

2001-03-12 Thread Jack Dempsey

snip
 Warning: Undefined variable: Titlesearch in
 d:\apache\htdocs\bkhtml\movies.php on line 22
 
 This is line 22 of movies.php:
 
 print "form name=\"search\" method=\"get\"
 action=\"movies/mysql_moviedb_search.php?Titlesearch=$Titlesearch\"\n";

are you sure your variable is capitalized previously?

 
 I also get this error:
 
 Warning: Use of undefined constant link - assumed 'link' in
 d:\apache\htdocs\bkhtml\movies\mysql_movieindex.php on line 15
 
 And this is lines 13-15 of mysql_movieindex.php:
 
 $link = mysql_pconnect("localhost",$user,$pass);
 if(!link)

you forgot the $ in front of link.you want if(!$link)


all the best,
jack

-- 
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] PHP (re)install problems

2001-03-12 Thread Jason Bouwmeester

Yeah I am pretty sure it is right, it was working fine before I reinstalled.

And thanks for the !$link that worked.

jb

snip
 Warning: Undefined variable: Titlesearch in
 d:\apache\htdocs\bkhtml\movies.php on line 22
 
 This is line 22 of movies.php:
 
 print "form name=\"search\" method=\"get\"
 action=\"movies/mysql_moviedb_search.php?Titlesearch=$Titlesearch\"\n";

are you sure your variable is capitalized previously?

-- 
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] PHP (re)install problems

2001-03-12 Thread David Robley

On Tue, 13 Mar 2001 08:46, Jason Bouwmeester wrote:
 Yeah I am pretty sure it is right, it was working fine before I
 reinstalled.

 And thanks for the !$link that worked.

 jb

 snip

  Warning: Undefined variable: Titlesearch in
  d:\apache\htdocs\bkhtml\movies.php on line 22
 
  This is line 22 of movies.php:
 
  print "form name=\"search\" method=\"get\"
  action=\"movies/mysql_moviedb_search.php?Titlesearch=$Titlesearch\"\
 n";

 are you sure your variable is capitalized previously?


Check the level of error reporting in your ini file - looks like you may 
have warnings turned on.

-- 
David Robley| WEBMASTER  Mail List Admin
RESEARCH CENTRE FOR INJURY STUDIES  | http://www.nisu.flinders.edu.au/
AusEinet| http://auseinet.flinders.edu.au/
Flinders University, ADELAIDE, SOUTH AUSTRALIA

-- 
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]