Mailinglisten-Archive |
This is a multi-part message in MIME format. ------=_NextPart_000_0004_01BFF63F.BF9B6CF0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Hallo Listenmitglieder, es ist zum verrückt werden. Nun hatte ich php am laufen. Habe die Entwicklungs-DB von ORACLE (8.1.5 Personal Edition) aus dem Netz zum Laufen bekommen und Ich kann die phpinfo.php nicht mal mehr laufen lassen. Fehlermeldung: in meiner 'php_err.log'-Datei: [24-Jul-2000 11:29:05] PHP Fatal error: Maximum execution time of 60 seconds exceeded in - on line 1 Hat irgend jemand so etwas schon mal gehabt? Oder hat jemand eine Idee, woran es liegen könnte? Folgende System-Konstuktion: Verzeichnisse / Inhalt: C:\WINNT / php.ini C:\winnt\system32\ / *.dll's (php_ldap.dll, ...) c:\php4 / php.exe + *.dll's (php_ldap.dll, ...) die php.ini haenge ich als attachement an. Hoffentlich ist das moeglich, damit ich die Liste damit nicht vollhaue. Ich hoofe das ist in Ordnung so! Danke fuer Eure Hilfe Torsten Schulz ------=_NextPart_000_0004_01BFF63F.BF9B6CF0 Content-Type: application/octet-stream; name="php.ini" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="php.ini" [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 overriden 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 =3D value ; Directive names are *case sensitive* - foo=3Dbar is different from = FOO=3Dbar. ; ; 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 =3D ; sets foo to an empty string ; foo =3D none ; sets foo to an empty string ; foo =3D "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 ; ;;;;;;;;;;;;;;;;;;;; engine =3D On ; Enable the PHP scripting language engine under Apache short_open_tag =3D On ; allow the <? tag. otherwise, only <?php and = <script> tags are recognized. asp_tags =3D Off ; allow ASP-style <% %> tags precision =3D 14 ; number of significant digits displayed in floating = point numbers y2k_compliance =3D Off ; whether to be year 2000 compliant (will cause = problems with non y2k compliant browsers) output_buffering =3D Off ; Output buffering allows you to send header = lines (including cookies) ; even after you send body content, in the price of slowing PHP's ; output layer a bit. ; You can enable output buffering by in runtime by calling the = output ; buffering functions, or enable output buffering for all files ; by setting this directive to On. implicit_flush =3D Off ; Implicit flush tells PHP to tell the output = layer to flush itself ; automatically after every output block. This is equivalent to ; calling the PHP function flush() after each and every call to = print() ; or echo() and each and every HTML block. ; Turning this option on has serious performance implications, = and ; is generally recommended for debugging purposes only. allow_call_time_pass_reference =3D On ; whether to enable the ability to = force arguments to be=20 ; passed by reference at function-call time. This method ; is deprecated, and is likely to be unsupported in future ; versions of PHP/Zend. The encouraged method of specifying ; which arguments should be passed by reference is in the ; function declaration. You're encouraged to try and ; turn this option Off, and make sure your scripts work ; properly with it, to ensure they will work with future ; versions of the language (you will receive a warning ; each time you use this feature, and the argument will ; be passed by value instead of by reference). ; Safe Mode safe_mode =3D Off safe_mode_exec_dir =3D safe_mode_allowed_env_vars =3D PHP_ ; Setting certain environment = variables ; may be a potential security breach. ; This directive contains a comma-delimited ; list of prefixes. In Safe Mode, the ; user may only alter environment ; variables whose names begin with the ; prefixes supplied here. ; By default, users will only be able ; to set environment variables that begin ; with PHP_ (e.g. PHP_FOO=3DBAR). ; Note: If this directive is empty, PHP ; will let the user modify ANY environment ; variable! safe_mode_protected_env_vars =3D LD_LIBRARY_PATH ; This directive = contains a comma- ; delimited list of environment variables, ; that the end user won't be able to ; change using putenv(). ; These variables will be protected ; even if safe_mode_allowed_env_vars is ; set to allow to change them. disable_functions =3D ; This directive allows you to disable certain ; functions for security reasons. It receives ; a comma separated list of function names. ; This directive is *NOT* affected by whether ; Safe Mode is turned on or off. =09 ; Colors for Syntax Highlighting mode. Anything that's acceptable in = <font color=3D???> would work. highlight.string =3D #DD0000 highlight.comment =3D #FF8000 highlight.keyword =3D #007700 highlight.bg =3D #FFFFFF highlight.default =3D #0000BB highlight.html =3D #000000 ; Misc expose_php =3D On ; Decides whether PHP may expose the fact that it is = installed on the ; server (e.g., by adding its signature to the Web server header). ; It is no security threat in any way, but it makes it possible ; to determine whether you use PHP on your server or not. ;;;;;;;;;;;;;;;;;;; ; Resource Limits ; ;;;;;;;;;;;;;;;;;;; max_execution_time =3D 30 ; Maximum execution time of each script, = in seconds memory_limit =3D 8388608 ; Maximum amount of memory a script may = consume (8MB) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Error handling and logging ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; error_reporting is a bit-field. Or each number up to get desired = error reporting level ; E_ALL - All errors and warnings ; E_ERROR - fatal run-time errors ; E_WARNING - run-time warnings (non fatal errors) ; E_PARSE - compile-time parse errors ; E_NOTICE - run-time notices (these are warnings which often result = from a bug in ; your code, but it's possible that it was intentional (e.g., = using an ; uninitialized variable and relying on the fact it's = automatically ; initialized to an empty string) ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup ; E_CORE_WARNING - warnings (non fatal errors) that occur during PHP's = initial startup ; E_COMPILE_ERROR - fatal compile-time errors ; E_COMPILE_WARNING - compile-time warnings (non fatal errors) ; E_USER_ERROR - user-generated error message ; E_USER_WARNING - user-generated warning message ; E_USER_NOTICE - user-generated notice message ; Examples: ; error_reporting =3D E_ALL & ~E_NOTICE ; show all errors, except = for notices ; error_reporting =3D E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR ; show only = errors error_reporting =3D E_ALL & ~E_NOTICE ; Show all errors except for = notices display_errors =3D On ; Print out errors (as a part of the HTML script) log_errors =3D Off ; Log errors into a log file (server-specific log, = stderr, or error_log (below)) track_errors =3D Off ; Store the last error/warning message in = $php_errormsg (boolean) ;error_prepend_string =3D "<font color=3Dff0000>" ; string to output = before an error message ;error_append_string =3D "</font>" ; string to output = after an error message error_log =3D "C:\php_err.log" ; log errors to specified file ;error_log =3D syslog ; log errors to syslog (Event Log on NT, not = valid in Windows 95) warn_plus_overloading =3D Off ; warn if the + operator is used with = strings ;;;;;;;;;;;;;;;;; ; Data Handling ; ;;;;;;;;;;;;;;;;; variables_order =3D "EGPCS" ; This directive describes the order in = which PHP registers ; GET, POST, Cookie, Environment and Built-in variables (G, P, ; C, E & S respectively, often referred to as EGPCS or GPC). ; Registration is done from left to right, newer values override ; older values. register_globals =3D On ; Whether or not to register the EGPCS = variables as global ; variables. You may want to turn this off if you don't want ; to clutter your scripts' global scope with user data. This = makes ; most sense when coupled with track_vars - in which case you = can ; access all of the GPC variables through the $HTTP_*_VARS[], ; variables. register_argc_argv =3D On ; This directive tells PHP whether to declare = the argv&argc ; variables (that would contain the GET information). If you ; don't use these variables, you should turn it off for ; increased performance track_vars =3D On ; enable the $HTTP_*_VARS[] arrays, where * is one = of ; ENV, POST, GET, COOKIE or SERVER. gpc_order =3D "GPC" ; This directive is deprecated. Use = variables_order instead. ; Magic quotes magic_quotes_gpc =3D On ; magic quotes for incoming GET/POST/Cookie = data magic_quotes_runtime=3D Off ; magic quotes for runtime-generated data, = e.g. data from SQL, from exec(), etc. magic_quotes_sybase =3D Off ; Use Sybase-style magic quotes (escape ' = with '' instead of \') ; automatically add files before or after any PHP document auto_prepend_file =3D auto_append_file =3D ; As of 4.0b4, PHP always outputs a character encoding by default in ; the Content-type: header. To disable sending of the charset, simply ; set it to be empty. ; PHP's built-in default is text/html default_mimetype =3D "text/html" ;default_charset =3D "iso-8859-1" ;;;;;;;;;;;;;;;;;;;;;;;;; ; Paths and Directories ; ;;;;;;;;;;;;;;;;;;;;;;;;; include_path =3D ; UNIX: "/path1:/path2" Windows: = "\path1;\path2" doc_root =3D "c:\inetpub\wwwroot\cepis" ; the root of the php pages, = used only if nonempty user_dir =3D ; the directory under which php opens the script using = /~username, used only if nonempty ;upload_tmp_dir =3D ; temporary directory for HTTP = uploaded files (will use system default if not specified) upload_max_filesize =3D 2097152 ; 2 Meg default limit on file = uploads extension_dir =3D ./ ; directory in which the loadable extensions = (modules) reside enable_dl =3D On ; Whether or not to enable the dl() function. ; The dl() function does NOT properly work in multithreaded ; servers, such as IIS or Zeus, and is automatically disabled ; on them. ;;;;;;;;;;;;;;;;;;;;;; ; Dynamic Extensions ; ;;;;;;;;;;;;;;;;;;;;;; ; if you wish to have an extension loaded automaticly, use the ; following syntax: extension=3Dmodulename.extension ; for example, on windows, ; extension=3Dmsql.dll ; or under UNIX, ; extension=3Dmsql.so ; Note that it should be the name of the module only, no directory = information=20 ; needs to go here. Specify the location of the extension with the = extension_dir directive above. ;Windows Extensions ;extension=3Dphp_mysql.dll ;extension=3Dphp_nsmail.dll ;extension=3Dphp_calendar.dll ;extension=3Dphp_dbase.dll ;extension=3Dphp_filepro.dll ;extension=3Dphp_gd.dll ;extension=3Dphp_dbm.dll ;extension=3Dphp_mssql.dll ;extension=3Dphp_zlib.dll ;extension=3Dphp_filepro.dll extension=3Dphp_imap4r2.dll ;extension=3Dphp_ldap.dll ;extension=3Dphp_crypt.dll ;extension=3Dphp_msql2.dll extension=3Dphp_odbc.dll ;;;;;;;;;;;;;;;;;;; ; Module Settings ; ;;;;;;;;;;;;;;;;;;; [Syslog] define_syslog_variables =3D Off ; Whether or not to define the various = syslog variables, ; e.g. $LOG_PID, $LOG_CRON, etc. Turning it off is a ; good idea performance-wise. In runtime, you can define ; these variables by calling define_syslog_variables() [mail function] SMTP =3D localhost ;for win32 only sendmail_from =3D me_(at)_localhost.com ;for win32 only ;sendmail_path =3D ;for unix only, may supply arguments as well (default = is sendmail -t) [Debugger] debugger.host =3D localhost debugger.port =3D 7869 debugger.enabled =3D False [Logging] ; These configuration directives are used by the example logging = mechanism. ; See examples/README.logging for more explanation. ;logging.method =3D db ;logging.directory =3D /path/to/log/directory [SQL] sql.safe_mode =3D Off [ODBC] ;uodbc.default_db =3D Not yet implemented ;uodbc.default_user =3D Not yet implemented ;uodbc.default_pw =3D Not yet implemented uodbc.allow_persistent =3D On ; allow or prevent persistent links uodbc.check_persistent =3D On ; check that a connection is still = validbefore reuse uodbc.max_persistent =3D -1 ; maximum number of persistent links. -1 = means no limit uodbc.max_links =3D -1 ; maximum number of links (persistent+non = persistent). -1 means no limit uodbc.defaultlrl =3D 4096 ; Handling of LONG fields. Returns number of = bytes to variables, 0 means passthru uodbc.defaultbinmode =3D 1 ; Handling of binary data. 0 means passthru, = 1 return as is, 2 convert to char ; See the documentation on odbc_binmode and odbc_longreadlen for an = explanation of uodbc.defaultlrl ; and uodbc.defaultbinmode [bcmath] bcmath.scale =3D 0 ; number of decimal digits for all bcmath functions [browscap] ;browscap =3D extra/browscap.ini [Session] session.save_handler =3D files ; handler used to store/retrieve = data session.save_path =3D /tmp ; argument passed to save_handler ; in the case of files, this is the ; path where data files are stored session.use_cookies =3D 1 ; whether to use cookies session.name =3D PHPSESSID =20 ; name of the session ; is used as cookie name session.auto_start =3D 0 ; initialize session on request = startup session.cookie_lifetime =3D 0 ; lifetime in seconds of cookie ; or if 0, until browser is = restarted session.cookie_path =3D / ; the path the cookie is valid for session.cookie_domain =3D ; the domain the cookie is valid = for session.serialize_handler =3D php ; handler used to serialize data ; php is the standard serializer of = PHP session.gc_probability =3D 1 ; percentual probability that the=20 ; 'garbage collection' process is = started ; on every session initialization session.gc_maxlifetime =3D 1440 ; after this number of seconds, = stored ; data will be seen as 'garbage' and ; cleaned up by the gc process session.referer_check =3D ; check HTTP Referer to invalidate = ; externally stored URLs containing = ids session.entropy_length =3D 0 ; how many bytes to read from the = file session.entropy_file =3D ; specified here to create the = session id ; session.entropy_length =3D 16 ; session.entropy_file =3D /dev/urandom session.cache_limiter =3D nocache ; set to {nocache,private,public} = to ; determine HTTP caching aspects session.cache_expire =3D 180 ; document expires after n minutes [Assertion] ;assert.active =3D On ; assert(expr); active by default ;assert.warning =3D On ; issue a PHP warning for each failed = assertion. ;assert.bail =3D Off ; don't bail out by default. ;assert.callback =3D 0 ; user-function to be called if an assertion = fails. ;assert.quiet_eval =3D 0 ; eval the expression with current = error_reporting(). set to true if you want error_reporting(0) around the = eval(). ; Local Variables: tab-width: 2 ; default: tab-width: 4 ; End: ------=_NextPart_000_0004_01BFF63F.BF9B6CF0--
php::bar PHP Wiki - Listenarchive