Witaj Gościu! ( Zaloguj | Rejestruj )

Forum PHP.pl

> brak połaczenia z mysql
Cienki1980
post
Post #1





Grupa: Przyjaciele php.pl
Postów: 1 590
Pomógł: 40
Dołączył: 11.01.2007
Skąd: Centrum

Ostrzeżenie: (0%)
-----


korzystasz z mysqli() .. a spróbuj za pomoca
mysql_connect();
mysql_select_database();
mysql_query();
itp itd.

To co podane w książce odnosi się do tego.
Go to the top of the page
+Quote Post
 
Start new topic
Odpowiedzi
starach
post
Post #2





Grupa: Zarejestrowani
Postów: 999
Pomógł: 30
Dołączył: 14.01.2007
Skąd: wiesz ?

Ostrzeżenie: (0%)
-----


Ściągnij sobie paczkę php nie używaj instalatora bo on jest po pierwsze niedoskonały po drugie nie ma rozszerzeń na przykład mysql/i, a zainstalowanie php z paczki sprowadza się tylko do przekopiowania ew zmiany kilku linijek w httpd.conf

edit>
LoadModule php5_module "c:/php/php5apache2_2.dll"
AddType application/x-httpd-php .php
PHPIniDir "C:/php"

To wystarczy dodać do pliku Apache/conf/httpd.conf żeby ci php śmigało.

edit>>
wszystko masz opisane w pliku install.txt który będzie w paczce którą ściągniesz z php.net
wyszukaj akapit Apache .. a zresztą wkleje ci to tutaj:
CODE
Apache 2.0.x on Microsoft Windows

This section contains notes and hints specific to Apache 2.0.x
installs of php on Microsoft Windows systems. We also have
instructions and notes for Apache 1.3.x users on a separate page.

Note: You should read the manual installation steps first!

Apache 2.2.x Support: Users of Apache 2.2.x may use the
documentation below except the appropriate DLL file is named
php5apache2_2.dll and it only exists as of php 5.2.0. See also
http://snaps.php.net/

Warning

We do not recommend using a threaded MPM in production with Apache2.
Use the prefork MPM instead, or use Apache1. For information on why,
read the related FAQ entry on using Apache2 with a threaded MPM

You are highly encouraged to take a look at the Apache Documentation
to get a basic understanding of the Apache 2.0.x Server. Also consider
to read the Windows specific notes for Apache 2.0.x before reading on
here.

php and Apache 2.0.x compatibility notes: The following versions of
php are known to work with the most recent version of Apache 2.0.x:

* php 4.3.0 or later available at http://www.php.net/downloads.php.
* the latest stable development version. Get the source code
http://snaps.php.net/php5-latest.tar.gz or download binaries for
Windows http://snaps.php.net/win32/php5-win32-latest.zip.
* a prerelease version downloadable from http://qa.php.net/.
* you have always the option to obtain php through anonymous CVS.

These versions of php are compatible to Apache 2.0.40 and later.

Apache 2.0 SAPI-support started with php 4.2.0. php 4.2.3 works
with Apache 2.0.39, don't use any other version of Apache with php
4.2.3. However, the recommended setup is to use php 4.3.0 or later
with the most recent version of Apache2.

All mentioned versions of php will work still with Apache 1.3.x.

Warning

Apache 2.0.x is designed to run on Windows NT 4.0, Windows 2000 or
Windows XP. At this time, support for Windows 9x is incomplete. Apache
2.0.x is not expected to work on those platforms at this time.

Download the most recent version of Apache 2.0.x and a fitting php
version. Follow the Manual Installation Steps and come back to go on
with the integration of php and Apache.

There are two ways to set up php to work with Apache 2.0.x on Windows.
One is to use the CGI binary the other is to use the Apache module
DLL. In either case you need to edit your httpd.conf to configure
Apache to work with php and then restart the server.

Note: Remember that when adding path values in the Apache
configuration files on Windows, all backslashes such as
c:\directory\file.ext must be converted to forward slashes, as
c:/directory/file.ext. A trailing slash may also be necessary for
directories.
_________________________________________________________________

Installing as a CGI binary

You need to insert these three lines to your Apache httpd.conf
configuration file to set up the CGI binary:

Example 2-5. php and Apache 2.0 as CGI
ScriptAlias /php/ "c:/php/"
AddType application/x-httpd-php .php

# For php 4
Action application/x-httpd-php "/php/php.exe"

# For php 5
Action application/x-httpd-php "/php/php-cgi.exe"

Warning

By using the CGI setup, your server is open to several possible
attacks. Please read our CGI security section to learn how to defend
yourself from those attacks.
_________________________________________________________________

Installing as an Apache module

You need to insert these two lines to your Apache httpd.conf
configuration file to set up the php module for Apache 2.0:

Example 2-6. php and Apache 2.0 as Module
# For php 4 do something like this:
LoadModule php4_module "c:/php/php4apache2.dll"
# Don't forget to copy the php4apache2.dll file from the sapi directory!
AddType application/x-httpd-php .php

# For php 5 do something like this:
LoadModule php5_module "c:/php/php5apache2.dll"
AddType application/x-httpd-php .php

# configure the path to php.ini
PHPIniDir "C:/php"

Note: Remember to substitute your actual path to php for the
c:/php/ in the above examples. Take care to use either
php4apache2.dll or php5apache2.dll in your LoadModule directive and
not php4apache.dll or php5apache.dll as the latter ones are
designed to run with Apache 1.3.x.

Note: If you want to use content negotiation, read related FAQ.

Warning

Don't mix up your installation with DLL files from different php
versions. You have the only choice to use the DLL's and extensions
that ship with your downloaded php version.
_________________________________________________________________


Ten post edytował orglee 27.01.2007, 17:16:35
Go to the top of the page
+Quote Post

Posty w temacie
- Cienki1980   brak połaczenia z mysql   27.01.2007, 12:03:31
- - JaRoPHP   Cytat(aawasik @ 27.01.2007, 11:30:09 ...   27.01.2007, 12:15:57
|- - Cienki1980   Cytat(JaRoPHP @ 27.01.2007, 12:15:57 ...   27.01.2007, 13:02:36
- - aawasik   Niestety nadal nie działa skrypt. Prośba do odpisu...   27.01.2007, 12:37:13
- - aawasik   Próbowałem z mysql tez nie dziala. Z tego co widze...   27.01.2007, 13:34:05
- - aawasik   [sql] po wpisaniu kodu @ $db=new mysqli(...   27.01.2007, 15:24:54
- - TomASS   a jak napiszesz [PHP] pobierz, plaintext <?php...   27.01.2007, 15:57:40
- - orglee   [PHP] pobierz, plaintext <?phpprint_r(get_l...   27.01.2007, 16:07:19
- - JaRoPHP   Cytat(aawasik @ 27.01.2007, 13:34:05 ...   27.01.2007, 16:19:46
- - aawasik   ok tam jest z 1000 wierszy z róznymi 'dziwactw...   27.01.2007, 16:35:44
- - aawasik   Po wykonaniu skryptu print_r itd... wyswietla sie ...   27.01.2007, 17:00:36
- - Cienki1980   Jeżeli zainstalowałbyś jakiś serwer np. Krasnala t...   27.01.2007, 17:04:01
- - TomASS   To co Ci daje w końcu to co poleciłem? Spróbuj pr...   27.01.2007, 17:12:51
- - orglee   Ściągnij sobie paczkę php nie u...   27.01.2007, 17:12:53
- - JaRoPHP   Dołączając się do słów powyższych, aby było zainst...   27.01.2007, 17:28:31
- - aawasik   To już wiem tam mam odznaczone ale i tak dalej nie...   27.01.2007, 17:34:54
- - Balas   Juz ktos wczesniej pisal, WAMP, XAMP, Webserv, Kra...   27.01.2007, 21:05:54
- - spryciula   easyphp, polecam Apache/1.3.33 (Win32) php/4.3...   27.01.2007, 21:26:14
- - kpax81   Ta ksiazka ma bledy przewazne brakuje ; lub jest o...   2.02.2007, 14:46:18


Reply to this topicStart new topic
2 Użytkowników czyta ten temat (2 Gości i 0 Anonimowych użytkowników)
0 Zarejestrowanych:

 



RSS Aktualny czas: 13.10.2025 - 07:26