![]() |
![]() ![]() |
![]() |
![]()
Post
#1
|
|
![]() Grupa: Zarejestrowani Postów: 260 Pomógł: 0 Dołączył: 18.07.2003 Skąd: Tarnów Ostrzeżenie: (0%) ![]() ![]() |
Apache/2.0.50 (Win32) php/5.0.0
jakims dziwnym trafem nie chca mi sie ladowac niektore biblioteki z php.ini, np: Cytat php Startup: Unable to load dynamic library 'c:\php5\ext\php_mysql.dll' - Nie można odnależć określonego modułu. php_mysql.dll jak najbardziej jest na swoim miejscu. niektore sie laduja (np. bz2) a niektore nie (np. mysql) ktos ma jakis pomysl? btw. dlaczego obsluga mysql nie jest juz wbudowana? ![]() ![]() -------------------- Gentoo Linux 64bit / PHP 5.2 / MySQL 5.1
-> Administracja serwerami Linux i FreeBSD |
|
|
![]()
Post
#2
|
|
![]() Grupa: Zarejestrowani Postów: 405 Pomógł: 1 Dołączył: 19.09.2003 Skąd: Lublin Ostrzeżenie: (0%) ![]() ![]() |
Skopiuj plik libmysql.dll z katalogu głównego PHP5 do katalogu Apache/bin.
Miałem taki problem przy PHP5 RC3 i powyższe pomogło. -------------------- Rozwój cywilizacji informatycznej to wyścig między programistami, którzy wytwarzają coraz łatwiejsze
programy użytkowe dla idiotów, a światem produkującym coraz lepszych gatunkowo idiotów. Blog: Małolepszy.info |
|
|
![]()
Post
#3
|
|
![]() Grupa: Zarejestrowani Postów: 260 Pomógł: 0 Dołączył: 18.07.2003 Skąd: Tarnów Ostrzeżenie: (0%) ![]() ![]() |
tnx dude, you rox!
![]() btw hej! gdzie jest przycisk pomogl mi? ![]() -------------------- Gentoo Linux 64bit / PHP 5.2 / MySQL 5.1
-> Administracja serwerami Linux i FreeBSD |
|
|
![]()
Post
#4
|
|
Grupa: Zarejestrowani Postów: 25 Pomógł: 0 Dołączył: 12.08.2004 Ostrzeżenie: (0%) ![]() ![]() |
witam,
czy moze mi ktos wyjasnic co jest?? u mnie nie ma w ogole pliku php_mysql.dll - skad go moge sciagnac bo szukalem nawet na googlach i nie znalazlem. Z gory wielkie dzieki |
|
|
![]()
Post
#5
|
|
![]() Grupa: Zarejestrowani Postów: 764 Pomógł: 3 Dołączył: 30.04.2003 Ostrzeżenie: (0%) ![]() ![]() |
jak sciagniesz sobie poczke php5 to powinienes miec ten plik w katalogu ext
|
|
|
![]()
Post
#6
|
|
Grupa: Zarejestrowani Postów: 25 Pomógł: 0 Dołączył: 12.08.2004 Ostrzeżenie: (0%) ![]() ![]() |
Witam,
Faktycznie instalke php mialem z msi. Wsadzilem pliki na swoje miejsce ale dalej nic :( Juz mi sil brakuje C:\SERWER\APACHE - KATALOG Z APACHE C:\SERWER\php - KATALOG Z php C:\SERWER\MYSQL - KATALOG Z MYSQL'EM Pomocy bo sie zaraz zdenerwuje :angry: plik php.ini [CODE] [php] ;;;;;;;;;;; ; WARNING ; ;;;;;;;;;;; ; This is the default settings file for new php installations. ; By default, php installs itself with a configuration suitable for ; development purposes, and *NOT* for production purposes. ; For several security-oriented considerations that should be taken ; before going online with your site, please consult php.ini-recommended ; and http://php.net/manual/en/security.php. ;;;;;;;;;;;;;;;;;;; ; About this file ; ;;;;;;;;;;;;;;;;;;; ; This file controls many aspects of php's behavior. In order for php to ; read it, it must be named 'php.ini'. php looks for it in the current ; working directory, in the path designated by the environment variable ; PHPRC, and in the path that was defined in compile time (in that order). ; Under Windows, the compile-time path is the Windows directory. The ; path in which the php.ini file is looked for can be overridden using ; the -c argument in command line mode. ; ; The syntax of the file is extremely simple. Whitespace and Lines ; beginning with a semicolon are silently ignored (as you probably guessed). ; Section headers (e.g. [Foo]) are also silently ignored, even though ; they might mean something in the future. ; ; Directives are specified using the following syntax: ; directive=value ; Directive names are *case sensitive* - foo=bar is different from FOO=bar. ; ; The value can be a string, a number, a php constant (e.g. E_ALL or M_PI), one ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression ; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo"). ; ; Expressions in the INI file are limited to bitwise operators and parentheses: ; | bitwise OR ; & bitwise AND ; ~ bitwise NOT ; ! boolean NOT ; ; Boolean flags can be turned on using the values 1, On, True or Yes. ; They can be turned off using the values 0, Off, False or No. ; ; An empty string can be denoted by simply not writing anything after the equal ; sign, or by using the None keyword: ; ; foo=; sets foo to an empty string ; foo=none ; sets foo to an empty string ; foo="none" ; sets foo to the string 'none' ; ; If you use constants in your value, and these constants belong to a ; dynamically loaded extension (either a php extension or a Zend extension), ; you may only use these constants *after* the line that loads the extension. ; ; All the values in the php.ini-dist file correspond to the builtin ; defaults (that is, if no php.ini is used, or if you delete these lines, ; the builtin defaults will be identical). ;;;;;;;;;;;;;;;;;;;; ; Language Options ; ;;;;;;;;;;;;;;;;;;;; ; Enable the php scripting language engine under Apache. engine=On ; Enable compatibility mode with Zend Engine 1 (php 4.x) zend.ze1_compatibility_mode=Off ; Allow the <? tag. Otherwise, only <?php and <script> tags are recognized. ; NOTE: Using short tags should be avoided when developing applications or ; libraries that are meant for redistribution, or deployment on php ; servers which are not under your control, because short tags may not ; be supported on the target server. For portable, redistributable code, ; be sure not to use short tags. short_open_tag=On ; Allow ASP-style <% %> tags. asp_tags=Off ; The number of significant digits displayed in floating point numbers. precision=12 ; Enforce year 2000 compliance (will cause problems with non-compliant browsers) y2k_compliance=On ; Output buffering allows you to send header lines (including cookies) even ; after you send body content, at the price of slowing php's output layer a ; bit. You can enable output buffering during runtime by calling the output ; buffering functions. You can also enable output buffering for all files by ; setting this directive to On. If you wish to limit the size of the buffer ; to a certain size - you can use a maximum number of bytes instead of 'On', as ; a value for this directive (e.g., output_buffering=4096). output_buffering=Off ; You can redirect all of the output of your scripts to a function. For ; example, if you set output_handler to "mb_output_handler", character ; e |
|
|
![]() ![]() |
![]() |
Aktualny czas: 19.08.2025 - 02:31 |