Mailinglisten-Archive |
This is a multi-part message in MIME format. ------=_NextPart_000_00C3_01BF1518.30282940 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Hallo Denis, Also ich habe mir bereits der Kopf zerbrochen fuer eine WAMP installation (Windo..w..f Apache Mysql PHP3) 2 oder 3 tagen geduld und dennoch resultat NULL. (verdienst ausfall total) Dann habe ich die Xitami Webserver Quik anleitung gesehen von Thomas ....Ro.... der Namen kommt mir nicht auf jedem Fall bei www.php-center.de Link How-to und das Program Web Server http://www.imatix.com/ heruntergeladet Drauflos Setup alle PHP dll sowie die PHP.exe in den Xitami folder Kopiert eine: <?php phpinfo ( ) ?> ins Root als info.html eine verknufung unter start : http://localhost/index.html Im Config file xitami.CGF unter filter: [Filter] .ssi=perlssi # Pass *.ssi to PerlSSI .shtm=perlssi # Pass *.shtm to PerlSSI .shtml=perlssi # Pass *.shtml to PerlSSI .php=c:\php3\php3.exe # Pass *.php3 to PHP.EXE .phtml=c:\php3\php3.exe # Pass *.php3 to PHP.EXE .php3=php.exe # Pass *.php3 to PHP.EXE .html=php.exe # Pass *.php3 to PHP.EXE Und Php3 Lauf: Arbeit eine stunde Probieren suchen Doku unsw... Nur die php.ini bleibt im Window ordner Bei der php info habe ich nun ODBC als zugriff :-( Doch nun Kann ich schreiben fuer den Unix im Virtual server (netz) (ohne die leitung lang zu ....) Fals Jemand eine Gute Mysql server Installation HOW TO ( mit der regedit wie und wo) In diese oder inder mysql liste macht kommt von mir ein Lob vorbei . mit einen script wie Uploaden (file) und direkt mailen an XY. Ciao Patrik ----- Original Message ----- From: Denis Mettler <taipan_(at)_netcologne.de> To: 'php_(at)_infosoc.uni-koeln.de' <php_(at)_solix.wiso.Uni-Koeln.DE> Sent: Wednesday, October 13, 1999 12:33 AM Subject: [php] apache maillist > Hallo zusammen, > > wei? jemand von euch, ob es eine apache maillist gibt? > Ich bin namlich gerade in den grundzugen mit php und apache und habe > probleme mit der installation von apache-webserver. Oder kann mir jemand > von euch helfen? > Ich habe apache fur windows unter win98 installiert. > Es startet aber nicht. > Ich bekomme immer die folgende fehlermeldung.... > > Cannot determine local host name. > Use the servername directive to set it manually. > > danke > Best Regards > Denis Mettler > http://www.taipan-enterprise.de > http://www.taipan-design.de (under Construction) > > > -- > ** Durchgehend geöffnet: http://www.php-center.de ** > Die PHP-Liste: mailto:php_(at)_infosoc.uni-koeln.de > http://infosoc.uni-koeln.de/mailman/listinfo/php ------=_NextPart_000_00C3_01BF1518.30282940 Content-Type: application/octet-stream; name="php3.ini" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="php3.ini" [PHP_3] ;;;;;;;;;;;;;;;;;;; ; About this file ; ;;;;;;;;;;;;;;;;;;; ; This file controls many aspects of PHP's behavior. In order for PHP = to ; read it, it must be named 'php3.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 php3.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 (they probably won't). ; ; Options are specified using the syntax key =3D value or key =3D = "complex value". ; Key names are *case sensitive*. foo =3D bar is different from FOO =3D = bar. ; 'value' can be any number, word or keyword (keywords are On, Off, = True, ; False, Yes and No, and are case insensitive). ; 'complex value' can be just about anything, expcept for " and a = newline ; 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. ; ; All the values in the php3.ini-dist file correspond to the builtin ; defaults (that is, if no php3.ini is used, or if you delete these = lines, ; the builtin defaults will be identical). ;;;;;;;;;;;;;;;;;;;; ; Language Options ; ;;;;;;;;;;;;;;;;;;;; engine =3D On ; enable PHP 3.0 parser 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) ; Safe Mode safe_mode =3D Off safe_mode_exec_dir =3D ; 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 ;;;;;;;;;;;;;;;;;;; ; 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. Add each number up to get desired = error reporting level ; 1 =3D Normal errors ; 2 =3D Normal warnings ; 4 =3D Parser errors ; 8 =3D Notices - warnings you can ignore, but sometimes imply a bug = (e.g., using an uninitialized variable) error_reporting =3D 7 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 filename ; 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 ; ;;;;;;;;;;;;;;;;; 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 \') track_vars =3D On ; enable $HTTP_GET_VARS[], $HTTP_POST_VARS[] and = $HTTP_COOKIE_VARS[] arrays ; automatically add files before or after any PHP 3.0 document auto_prepend_file =3D auto_append_file =3D ;;;;;;;;;;;;;;;;;;;;;;;;; ; Paths and Directories ; ;;;;;;;;;;;;;;;;;;;;;;;;; include_path =3D ; UNIX: "/path1:/path2" Windows: = "\path1;\path2"include_path doc_root =3D ; 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 ;;;;;;;;;;;;;;;;;;;;;; ; 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 ;Windows Extensions extension=3Dphp3_mysql.dll extension=3Dphp3_nsmail.dll extension=3Dphp3_calendar.dll extension=3Dphp3_dbase.dll extension=3Dphp3_filepro.dll extension=3Dphp3_gd.dll extension=3Dphp3_dbm.dll extension=3Dphp3_mssql.dll ;extension=3Dphp3_zlib.dll extension=3Dphp3_filepro.dll extension=3Dphp3_imap4r2.dll extension=3Dphp3_ldap.dll extension=3Dphp3_crypt.dll extension=3Dphp3_msql2.dll extension=3Dphp3_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 info_(at)_localhost.ch ;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.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 [MySQL] mysql.allow_persistent =3D On ; allow or prevent persistent link mysql.max_persistent =3D -1 ; maximum number of persistent links. -1 = means no limit mysql.max_links =3D -1 ; maximum number of links (persistent+non = persistent). -1 means no limit =09 ; mysql_connect() will use the $MYSQL_TCP_PORT, or the mysql-tcp [MySQL]=20 mysql.default_port =3D 3306 mysql.default_host =3D localhost =20 mysql.default_user =3D root =09 =09 [mSQL] msql.allow_persistent =3D On ; allow or prevent persistent link msql.max_persistent =3D -1 ; maximum number of persistent links. -1 = means no limit msql.max_links =3D -1 ; maximum number of links (persistent+non = persistent). -1 means no limit [PostgresSQL] pgsql.allow_persistent =3D On ; allow or prevent persistent link pgsql.max_persistent =3D -1 ; maximum number of persistent links. -1 = means no limit pgsql.max_links =3D -1 ; maximum number of links (persistent+non = persistent). -1 means no limit [Sybase] sybase.allow_persistent =3D On ; allow or prevent persistent link sybase.max_persistent =3D -1 ; maximum number of persistent links. -1 = means no limit sybase.max_links =3D -1 ; maximum number of links (persistent+non = persistent). -1 means no limit sybase.interface_file =3D "/usr/sybase/interfaces" sybase.min_error_severity =3D 10 ; minimum error severity to display sybase.min_message_severity =3D 10 ; minimum message severity to display sybase.compatability_mode =3D Off ; compatability mode with earlier = versions of PHP 3.0. ; If on, this will cause PHP to automatically assign types to = results ; according to their Sybase type, instead of treating them all = as ; strings. This compatability mode will probably not stay = around ; forever, so try applying whatever necessary changes to your = code, ; and turn it off. [Sybase-CT] sybct.allow_persistent =3D On ; allow or prevent persistent link sybct.max_persistent =3D -1 ; maximum number of persistent links. -1 = means no limit sybct.max_links =3D -1 ; maximum number of links (persistent+non = persistent). -1 means no limit sybct.min_server_severity =3D 10 ; minimum server message severity to = display sybct.min_client_severity =3D 10 ; minimum client message severity to = display [bcmath] bcmath.scale =3D 0 ; number of decimal digits for all bcmath functions [browscap] ;browscap =3D extra/browscap.ini [Informix] ifx.default_host =3D ; default host for ifx_connect() (doesn't apply = in safe mode) ifx.default_user =3D ; default user for ifx_connect() (doesn't apply = in safe mode) ifx.default_password =3D ; default password for ifx_connect() (doesn't = apply in safe mode) ifx.allow_persistent =3D On ; allow or prevent persistent link ifx.max_persistent =3D -1 ; maximum number of persistent links. -1 = means no limit ifx.max_links =3D -1 ; maximum number of links (persistent+non = persistent). -1 means no limit ifx.textasvarchar =3D 0 ; if set on, select statements return the = contents of a text blob instead of it's id ifx.byteasvarchar =3D 0 ; if set on, select statements return the = contents of a byte blob instead of it's id ifx.charasvarchar =3D 0 ; trailing blanks are stripped from = fixed-length char columns. May help the life ; of Informix SE users.=20 ifx.blobinfile =3D 0 ; if set on, the contents of text&byte blobs are = dumped to a file instead of ; keeping them in memory ifx.nullformat =3D 0 ; NULL's are returned as empty strings, unless = this is set to 1. In that case, ; NULL's are returned as string 'NULL'. ------=_NextPart_000_00C3_01BF1518.30282940--
php::bar PHP Wiki - Listenarchive