Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    PHP


SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Php/apache/mysql On RH 7.2


I am trying to install php/apache/mysql on RedHat 7.2 I know that the default install does not work properly with MySQL If you choose to install apache, mysql, and php with the default install everything works great. Except.

When I go to check out the php setup using phpinfo() I see the dreaded --without-myql at the end of the configure section of the phpinfo page. I've tried to install from the source files from a few different sites that give you instructions on installing from source. but they seem to be all for older operating systems.

Is there anybody here that has got php and mysql working in RedHat 7.2. Are there specific instructions for RH 7.2 somewhere.




View Complete Forum Thread with Replies

Related Forum Messages:
PHP/MySQL/Apache
I got PHP MySQL and Apache all running on my local development machine, and have now written some useful code that runs fine locally. The problem is that now i have to make it work on the companies server, or my supervisor will look a bit dumb, as will I.

What i need help with is what to do to make php which is on the same server, talk to MySQL and fetch/write the data it needs to.
Could anyone give me idiot-proof help with making this work?

From looking at other posts and some literature i have made a guess that its to do with the part where i go:

<?
mysql_connect ('localhost', 'user', 'password');
mysql_select_db (dbname);
?>

But i'm not sure a: what to change the localhost to when its on the server. and b: if i need to make changes to any other files, especially server files.

View Replies !
Apache/mySQL/PHP On XP
I am looking for some sort of easy-to-install binary package to get an
environment ready for PHP development on XP.

I am starting the development of a site, starting with learning PHP and
design etc. The final site will run on some sort Linux/*nix, but for the
purpose of the first development phase I will have to use Windows.

I know the FoxServ package, but it seems to be very slowly updated. I saw
other things (Google) but they seem to be a one-man-show, not really
promising if I need to keep an up to date environment for a year or more.

I am looking for a precompiled environment with installation, because I do
not want to get into too many details of compilation/configuration at the
beginning. I will have enough work with learning PHP and designing the
site. :-)

Do you guys have any suggestions for such an environment?

View Replies !
Apache 2.0, Php 5 And Mysql + Win Xp
I am trying to run and configure Apache 2.0, php 5 and mysql on win xp
professional - this is the first time I have tried to install and
configure all three. I am having difficulty trying to configure them
on my computer. Can somebody help me - this is what I have done so
far.

Installed Apache 2.0, it worked perfectly ( I checked with my browser -
http://localhost) till the point where I started to point where I
wanted to store my html files. I have named the folder html_files and
have changed the DocumentRoot "C:/html_files" and <Directory
"C:/html_files/htdocs"> on the configuration file. And now it does not
work (http://localhost does not work). I get an error message saying
"You don't have permission to access / on the server". What am I doing
wrong?

Also I have installed and configured php 5, renamed Rename
e:phpphp.ini-dist it to php.ini and enterd the following on the
apache configuration file

LoadModule php5_module "c:/php/php5apache2.dll"
AddType application/x-httpd-php .php
PHPIniDir "c:/php"

View Replies !
Mysql/php/apache
I run a high traffic website, one of the issues we have hit is we run out of available ports due to the way apache/php/mysql work together when apache and mysql are on diffrent servers.

It seems when apache closes the connection to mysql it sits in TIME_WAIT for quite some time. Now when a few 1000 people are on the site that eats up all the ports. Now as a temp fix I upped the amount of ports available for this.

However it will obviously happen again. Once all the ports are gone the machine load spirals out of control and it locks up even at the console.

One thing that been suggested is to use pconnect, is this the best soloution or are others avaiable. We already have a load balencer and two servers, I don't want to just throw servers when theres cpu and ram resouces spare.

I'm sorry if this isn't quite the right section, as it covers LAMP in general I guess.
It's RHEL 4 with PHP 5, eaccelerator, stock apache and 64 bit stock mysql.

View Replies !
Apache 2.0 + Php 5.2 +mysql 5
i'm having problems the website laods and all but it wont comunecate whit the database it keeps saying i nead to update my sql version evendo i have the curent version. this is in my httpd.conf

PHPIniDir "D:/WebServer/PHP/"
LoadModule php5_module "D:/WebServer/PHP/php5apache2_2.dll"
AddHandler application/x-httpd-php .php

my php.ini has extension=php_mysql.dll enabled.

View Replies !
How To Set Up Apache/mysql/php
I followed the steps in a book i bought on how to set up apache/mysql/php. I went through each step however i am running into a problem. When i try to view php files through my localhost i get a save/open dialog box. if i choose save it simply get saved to my desktop and if i choose open, then it opens in dreamweaver.

View Replies !
MySQL With Apache 2.2.4
hi what is the best version of mySQL for Apache 2.2.4 and php4.4.7 and how am i gonna install it and test if its working.

View Replies !
Apache 2.0.52, MySQL 5.0.0
I'm having a little trouble getting MySQL to load with Apache. Apache and PHP are working OK, but MySQL isn't loading. I know php.ini is loading because the following lines are in php.ini:

extension_dir = "C:Program FilesPHP"
extension=php_mysql.dll

and the error I get when Apache starts up is:
PHP Startup: Unable to load dynamic load library 'C:Program
FilesPHPphp_mysql.dll' - The specified procedure could not be found.

php_mysql.dll is definitely there. This same setup ( MySQL 5.0.0, PHP 5.01) works unchanged with the Abyss Web Server, so I know MySQL and PHP are set up OK.

View Replies !
Install Apache,MySQL And PHP
I may sound like a newbie, but I've started my new job and we are running on Windows XP where previously I was using LINUX , and now I want to install Apache,MySQL and PHP, not done this for a while.

Been to php.net but confused as to which one to download, any helpers? Also where to install the other stuff.

View Replies !
PHP, Apache, MySQL, Dreamweaver MX
How to get it all to work!!! I've tried looking at docs, and notepad files, and text and manuals..I'm lost. I'm not sure how to set them all up to run with each other, and get DMX to recognize the apache server, and what to config, and edit and all that mess.

View Replies !
Apache And Mysql As Services
Just for those that don't know, An easy way to start and stop windows
services such as apache and mysql if you don't want them to automatically
run would be to enter the followin a batch file and then setting up a
shortcut on the desk top for it.

@echo off

net start Apache2
if ERRORLEVEL 1 (
net stop MySQL
net stop Apache2

) ELSE (
net start MySQL
)

This will toggle apache on and off and make sure mysql is running along with
it. If Apache2 is running then it will stop it. It will also sync MySQL to
the state of Apache2.

Just a simple few lines of code that might make it easier than manually
starting and stoping through admin services.

View Replies !
Can't Get Php And Mysql To Cooperate On Apache
I've tried to compile php4 with apache and mysql on a linux box running Redhat 6.2 several times now and I always get the same error when compiling --with-mysql: Code:

View Replies !
MySQL, PHP, And Apache Configuration.
Hi, I was just wondering if anyone could help me to configure my home
machine to run as a test server for PHP using MySQL and Apache. I am
running WinXP pro and I would really appreciate some help. (I'm trying
to learn PHP before paying the moola for a host, only to make a fool
of myself while trying to learn PHP. I don't see any logic in paying
for time to learn, when I could do it for free at home and then pay
for a host...) I would be very thankful if you would imagine that I
had just downloaded the files from their appropriate sites, and
haven't even opened them yet. A walkthrough of the installation etc...
The main part I've been having trouble with is editing the httpd.conf
file for Apache;

View Replies !
Compliling Apache With Php And MYSQL
I've tried to install these packages but i think there are some problems regarding PHP (some codes do prompt error) that shouldn't be there.

View Replies !
Installing Apache+mysql+php
redhat 7.1 but all the three apps(apache,mysql,php) are tar.gz format. When I configure php with the --with-pspell=/usr/local/pspell option, I got the error "pspell/pspell.h no such file or directory".

pspell.h is in the directory /usr/local/pspell/include/.

If I omitted that option, installation was ok. Can somebody tell me why? and how to fix it?

View Replies !
Apache 1.3.14, PHP 4.0, MYSQL And Win98
I have installed and working Apache and php 4.0. I would like to get mysql working too.
I ran the phpinfo file using PHP 4.0 and I did not get the MYSQL extensions in the resulting table. I subsequently - after changing my http.conf file - ran the phpinfo file using PHP 3.0.16 and got the MYSQL extension showing up in the table. Why isn't the mysql extensions showing up under PHP 4.0?

View Replies !
PHP/MySQL/Apache Uninstall
I have tried multiple times to install a secure MySQL/PHP/Apache application on Red Hat 7.2 but I keep on running into issues.

I want to give it another try and I am wondering how to uninstall past installations of apache/php/mysql. My targets have always been /usr/local/[APP]. Do I just need to remove the /usr/local/[APP] directories that were created during the installation.

View Replies !
Using Sessions And MySQL In Apache
I have installed Apache with mySQL and PHP on my computer at home. When I upload my mySQL db to my internet server, I need a password and username to access it, but how can I make my db on my computer get protected by the same password and username?

When I use a script with sessions and db conectivity on my computer I get this message I have tried the script on my webserver on the net, so I know it works...)
Any Ideas?

Warning: MySQL Connection Failed: Access denied for user: 'domain@localhost' (Using password: YES) in c:/apache/apache/htdocs/hardware_decks_show.php on line 4
Couldn't connect to server.

Warning: open(/tmpsess_cd2450ed9f7b3de8b070e24ca7a6b690, O_RDWR) failed: m (2) in c:/apache/apache/htdocs/shop/type.php on line 4

View Replies !
Question About Apache+Php+MySql
I setup a LAMP enviroment on my laptop, and did related config on my apache
and linux as well.

But each time I visit my http://localhost, I was only been brought to
index.html instead of index.php.

Only when I tpye http://localhost/index.php, I can open the index.php page.

Any one know how to config this?

View Replies !
Installing Php, Mysql, Apache
Do i need to unistall my current versions php 4.0, mysql 3.x, apache 1.x or can i just stick the cd in and let it install the latest versions?

View Replies !
PHP/MySQL/Apache Documentation.
The PHP, MySQL and Apache Online Documentation is some of the best
online docs I have seen for products and such in a very long time. DEC
had probably the best, because they as well as these docs have real-life
examples of how to use a particular verb or function.

So, if a middle-aged out-of-work systems/database/web administrator can
look up most of the questions and have an answer within minutes, well...
anyway, just to reiterate - the docs are very well constructed, mapped,
indexed and most of all - searchable.

http://www.php.net/manual/
http://dev.mysql.com/doc/mysql/en/index.html
http://httpd.apache.org/docs-project/ (and select your version)

View Replies !
Install Apache PHP And MySQL
install apache and configure php and my sql to
work with apache.

View Replies !
Php4.3.9 - Apache 2.0.55-mysql 4.0.16
Can php 4.3.9 work with apache 2.0.55 and mysql 4.0.16?

I installed mysql 4.0.16 rpm first on Red Hat 9. Then, I downloaded apache
2.0.55 source code and installed it on Red Hat 9 as:

../configure --prefix=/usr/local/apache --enable-so

No problem at all.I can start apache.

Then I downloaded php 4.3.9 source code and installed as:

../configure --with-apxs2=/usr/local/apache/bin/apxs --with-mysql

Unfortunately, the make gives me this error
.....
ext/ctype/ctype.lo: file not recoganized, file truncated
collect2: ld returned 1 exit status
make *** [libphp4.la] Error 1



View Replies !
Apache MySQL Tutorial
Does anyone know a really good step by step tutorial on how to install the above 3 on windows. I am having real trouble getting it to work.

View Replies !
Configure Apache-MySQL-PHP
Installation, and basic configuration of Apache-MySQL-PHP is definitely a trying time for us newbies but these sites will get you through it with ease. I prefer the first one. They differ slightly but are very informative.

View Replies !
Apache, MySql And PHP Downloads
I have just bought PHP and MySQL For Dynamic Websites by Larry Ullman, really getting into it. i own a website but i don't always have access to the internet and when i am only adjusting one line of code it seems a bit of a hassle. what am i meant to be downloading from the PHP, MySql and Apache website, are there packages with those three and only those three built in and set up.

View Replies !
Windows Apache Mysql
I have to extract 3 tables out of a .db (previously bzip2'ed). I am on a windows machine with apache php and mysql.

How can I import / create a database on my pc out of the .db file i have. Can I import / create through mysql query browser?Or how should I do this?

View Replies !
MYSQL, Apache And SNMP
Ive currently got MYSQL, PHP and Apache Web server set up on a Windows XP machine and running fine. But im currently trying to write some php scripts to access SNMP information from a router on my network (Cisco 1600), so i need to add some SNMP support to this.

Anyone know how i go about this, every example ive come accross so far is for a Linux Machine.

View Replies !
Apache/mysql/PHP Installation
So i installed xampp package, and that works if i do not touch anything. If i change doc_root in Apache configuration file, localhost points to the location and html files execute normally but php doesnt. Can anyone tell me what else must i setup except Apache conf file so i can execute PHP files in directory i create somwhere on the disk? How can i change the default directory in which php scripts are executed?

View Replies !
Apache Mysql Php5
I've managed to install, config, and make operable an Apache server, mysql, php5, ZendOptimizer, and phpMyAdmin on my WinXp comp. The problem is that when I install a script such as a cms or topsite they fail to run. I want to be able to run and test scripts on localhost before uploading to www.server I've installed such scripts on *nix based web servers without problem.

I researched and found that chmod should not be an issue on windows so all the files/folders should have read/write access. I,m completly stumped. These scripts that I've attempted to run on my test server go through thier entire install process creating tables and such untill complete. I point to the folder/index.php and nothing.

View Replies !
Php,PhPBB,Apache,MySQL,Linux
The problem is that i must run a BulletinBoard like Helpdesk program. Somebody else made this program. but in the vacation the shutted down the linux server. Now the Database doesn't work anymore.

The error he gives is:

phpBB : Critical Error

Could not connect to the database

I installed al programs again (Apache,Php,MySQL). And then i put back the backup from the database/phpBB program. I already asked some people and they say it is maybe the link between the database and the MySQL.

View Replies !
PHP5 With MySQL 4.1 On Apache 2 On Win98
I am in the process of learning php. I am particularly
interested in its uses with MySQL. I have Apache 2 and PHP5 both
installed and working fine. I pasted a MySQLi example for opening and
connecting to a MySQL DB into "hello.php"

<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");

/* check connection */
if (mysqli_connect_errno()) {
printf("Connect failed: %s
", mysqli_connect_error());
exit();
}

printf("Host information: %s
", $mysqli->host_info);

/* close connection */
$mysqli->close();
?>


For some reason when I get:

Fatal error: Class 'mysqli' not found in D:Apache
groupApache2htdocshello.php on line 7

I installed PHP in "d:php" and added it to my path in my autoexec.bat.
in php.ini:
....
extension_dir = "d:phpext"
....
extension=php_mysqli.dll

I read all the posts at the bottom of the pages on PHP.net website where
someone says "I had a problem and I got...yada...yada and did everything
each of those posts said you had to do and it still won't work.

The only thing left is how PHP needs compiled with a "--with" statement
or something like that but I'm using the windows binary so that
shouldn't be a problem...

Is there some other problem it could be besides a problem with finding a
dll or ini?

View Replies !
I Am Trying To Design A 'form?' Using Php, Mysql And Apache
I am trying to design a 'form?' using php, mysql and apache that does
the following.
1. enter data using forms
2. do lookup using form that will display council persons or
committees.. user will be able to select one and the system will display
either the council people on committee or the committees that the
council person is on.

There will be more but right now I am working on the lookup portion.
Would I use php to do sql select from either database and then 'somehow'
put that into an html/xhtml select function? If that is the direction
how do I take that select function to get one entry back to the
database? etc?

View Replies !
PHP And PEAR And MySQL Setup On Apache
Very experienced developer, newbie to PHP. My situation:

I have installed on my WIndows XP machine the following:
* PHP 5.2.1
* MySQL 5.0
* Apache 2.2

All of these are installed under C:Program Files under their own
directories.

The PHP installation works fine. I can put PHP files under the Apache
htdocs directory and have them run. My challenge now is getting the
MDB2.php libraries to run - right now I am getting an MDB2.php not
found error, which I believe is due to a include_path error...

So, I have 2 PHP.INI files -- one in C:Program FilesPHP and one in
the htdocs directory of Apache. They both have the exact same
include_path defined in the them. The very strange thing is that when
I run phpinfo(), the include_path comes out to be .;C:PHP5PEAR.

I have no idea where this value is coming from (it is the value for
Master and Local). I have search everywhere -- the PHP.INI files, the
registry, the ENV variables --- everywhere -- and I have no idea where
this value is coming from. Where does phpinfo() pull the include_path
from?

If I can track down and change this value to the "real" PHP path, I
may be able to get to the next hurdle of using MDB2!

View Replies !
Installation (MySQL, Apache, Perl, And PHP)
I just installed MySQL, Apache, Perl, and PHP, and am having some issues with PHP. I am not really sure if it is loaded correctly. When I execute apachectl restart, it responds that the server is restarted, but a test html page with the tag <phpinfo ( )?> does not produce any specific output. Is this a correct test page, or how else can I test that PHP is functioning as a Apache DSO?

View Replies !
PHPBB2, PHP 4.3.4, MySQL 4.1.1, Apache 2.0.49, Fedora 2
My combination is:

PHPBB2, PHP 4.3.4, MySQL 4.1.1, Apache 2.0.49, Fedora 2

Anyone out there has a successful combination of newer versions ?

View Replies !
Loading Mysql Module In Php/apache
i have apache 2 and php 5 setup and in my php.ini i have set my
extension_dir = "C:WINDOWSsystem32" and enabled php_mysql.dll but
everytime i start apache i get a message saying that it cant find the
file even though I have copied it to system32.

View Replies !
MySQL Apache PHP Conflict Problem
I'm having a problem that I'm not sure of the source for... so I'm asking
here as the Apache group doesnt seem to know anything about the error
message Apache generates.

The error message is "Your program accessed memory currently in use at
00003f13 from 167f:02fe"

This only happens if I start mysqld.exe then apache then shell out of a
web page using PHP exec() to execute another program.

If mySQL isn't loaded there is no error which initially suggests mySQL is
the problem however its apache that errors out but only if I shell out
to PHP suggesting a confilct problem.

I'm using
-----------
Win98
Apache 2
PHP 5.0
mySQL 4.1.22

Has anyone seen anything like this - googling produces nothing I can find
that seems relevant.

View Replies !
Apache,MySql,PHP On Windows Vs. Linux
Crazy (possibly dumb) question here...
I have a site running apache, mysql, php in a Win2K environment.
Primary development is that env also. I also am setting up a linux box
(old laptop), to begin playing with Linux. I'd like to set it up
similiary with apache,mysql, php.
If I do that, and start doing some development there (Linux box) - can
I expect that when I move the php code to the windows box that it will
behave similarly as it did on Linux?
Anything to watch out for? I'm completely new to Linux...

View Replies !
Apache Win32 + Php + Mysql Issues
i've just recently reinstalled windows, and i'm having a very
bad problem with apache (win32) + mysql + php.

For starters i installed everything like normal.

Apache v. 2.0.50
PHP v. 4.3.8
Mysql 4.1.4Gamma

I then installed phpmyadmin, i noticed it was having a problem
connecting to the database, citing an incompatible/outdated client. I
looked up some infos in the documentation and it told me to check the
version of the php api by calling phpinfo();

Client API version 3.23.49

Why is it only 3.x? Shouldn't it be 4.xx.xx? Is this the reason
phpmyadmin won't work? How do i fix this?

btw i've deleted all occurances of libmysql.dll and still have the same
issue.

View Replies !
Apache, MYSQL And Foreign Characters
I have a site that is written in English, but due to its global nature often gets foreign characters added.

Eg. Scandinavian characters æ, å, Hungarian ö, Spanish ñ etc etc

I'm not talking about unicode (chinese characters etc though I'd really like to know more about these)

I currently have a directory structure that uses place names, currently I'm using o instead of ö for these directory structures, and using preg "W" to "-" to remove punctuation characters.

What I'd like to do is to allow all foreign characters (that are included in the Extended ASCII set) as filenames and directory names. (Extended Ascii is missing the long ö & ü from the Hungarian char set ... sigh)

So what problems have I not thought of? My initial tests suggest that Apache and the OS (Linux) will be fine with retrieving these.

Next the preg functions - w doesn't match these types of characters. Reading egrep man page suggests that if I set the local with setlocale(LC_CTYPE,''); I can make this match. The problem is that it is for only one language - post php 4.3 I can send in multiple languages but this seems crazy... is there a more simple way?

http://www.php.net/function.setlocale

View Replies !
Installation Of Php/apache/mysql On Win98
I'm using an old computer - Win 98. I'd like to install php/apache/mySql on it but there are many versions and some do not recommend installing on Win98. If somebody could point me in the right directions about which versions of apache, mySql and PHp - or if there is a package suitable for Win98 that would be great.

View Replies !
Downloading PHP, MySQL With Apache Server
I am trying to learn MySQL, PHP and Apache server. I downloaded the Apache(2.0 and PHP(5.2). Also, I added these two codes in my conf file.

LoadModule php5_module "c:/php/php5apache2_2.dll"
AddType application/x-httpd-php .php

It says its running but does anybody know how to check it to see if I downloaded Php correct. My Apache server is working correct, I dont see anything wrong but just want to make sure that the php is working as well. I try to ran the phpinfo(); but it doesnt work (i guess not enough detail instructions for beginner like me). So pls guide me check my PHP connection w/ apache.

View Replies !
Apache/ Win XP Home/ PHP5/ MySQL
I can get PHP5 running on Apache 2 installed on Windows XP Home Edition. Now I want to add MySQL4 to the package. I installed it but I'm not sure what to do now. My PHP5 scripts are running fine. The MySQL server seems to be running though actually I'm not sure. When I write

$link = mysql_connect("localhost", "mysql");
I get the PHP5 error message
"Call to undefined function mysql_connect()"

Can anyone help?

View Replies !
MYSQL, And Apache Startup Problems
I installed Apache server, MYSQL and PHPMYADMIN from xampp - the apache server was running fine, and I created a SQL database, hoping to simply display the results on a web page. Code:

View Replies !
Mysql Using Apache On Fedora Core 5
I'm a newbie in the world of php and linux. In fact I'm just starting to familiarise myself on FC5. Can anyone be so kind as to teach me what are the steps needed, (and checks needed) to get all these up and running on my local machine for me to start coding my website in php?

View Replies !
Trouble With MySQL/Apache On Windows
I've just picked up the most recent versions:PHP - 5.2.0RC6-devMySQL - 5.0.26Apache - 2.2.3but I appear to be unable to get the mysql/mysqli extension to work.

After ensuring that the path is correctly set, and all the relevant configuration lines are in place, I am able to restart apache cleanly, however the mysql/mysqli extensions are NOT being loaded.

I've noticed that certain other extensions do not load mcyrpt and mhash being two notable ones I regularly use, however gd2 and gettext both load correctly. Code:

View Replies !
Problem Configuring 5 With Apache Mysql
I am using RedHat ES Ver3.0

Install Apache 2.0.59
Install MySQL 5.0.22

Downloaded PHP 5.1.4

Configure using:

./configure --with-mysql=/usr/local/mysql --with-apxs2=/usr/local/apache/bin/apxs

Receive Error:

configure: error: Try adding --with-zlib-dir=<DIR>. Please check config.log for more information.

Download zlib-1.2.3: configure and install

Reconfigure PHP using:

./configure --with-mysql=/usr/local/mysql --with-apxs2=/usr/local/apache/bin/apxs --with-zlib=/usr/local/zlib-1.2.3

Receive error:

checking if the location of ZLIB install directory is defined... no
configure: error: Cannot find libz

View Replies !
Trying To Get MySQL, Apache, And Php5 To Play Nice Together
I'm trying to get MySQL, Apache, and Php5 to play nice together in Windows
but having problems.

I don't want to install those automatic 'all-in-one' packages because I want
to know how to do it myself. I think I installed Apache correctly because
when I type http://localhost in my browser I see my directory, but echo
phpinfo() gets me a blank page. Can someone please point me to a resource
that explains how to get php5 working?

I put the doc root path in my php.ini to point to C:Program FilesApache
GroupApache2htdocs and no go..

Also, am I suppose to put my public_html folder inside of htdocs in tact, or
do I empty the contents of my public_html into htdocs?

View Replies !
Fedora 4.0- PHP 5 - MYSql 5 -Apache With 64 Bit Installation Help...[URGENT]
Can anyone help in installation of Fedora 4.0 , PHP 5 and MYSql 5
with Apache webserver I want to install 64 bit version of all because I
bought new PC with 64 bit supporting. Please provide me help where I
can get step by step information about installation of all above and if
necessary give download link also. I tried myself lot but not
successfull.

I have 64bit fedora 4.0 which is installed from fedora site.

Guide me soon if possible I need to start project in PHP 5 and MySql 5.

View Replies !
Php,apache,mysql,phpmyadmin Bundle For Linux?
Is there a bundle that will work on RedHat 7? I wanted to check first because I heard that the RH 7 rpm's dont work right.

View Replies !
Apache+mySQL Leaving Connections Open?
I've recently started getting 'too many connections' from our website
and I don't really know why.

Nearly every page of our website includes a file which does a single
pconnect which all my scripts share. At this point I would expect a
single connection per httpd child running which is closed when the child
is destroyed. mysql max_connections is currently 100 and httpd max
clients is 100 so I shouldn't get this problem should I?

As a shorter term fix, can anyone tell me the syntax to increase
max_connections from my.cnf. The manual on the website is not very clear?

View Replies !

Copyright © 2005-08 www.BigResource.com, All rights reserved