[PHP-DEV] Bug #10795 Updated: One of the library files needed to run this application cannot be found

2001-05-11 Thread derick

ID: 10795
Updated by: derick
Reported By: [EMAIL PROTECTED]
Status: Feedback
Bug Type: PWS related
Operating system: 
PHP Version: 4.0.5
Assigned To: 
Comments:

I don't think that's the whole error. Even Windows must give better errors.
What library could not be found?

Derick

Previous Comments:
---

[2001-05-11 02:59:22] [EMAIL PROTECTED]
User update:

One of the library files needed to run 
text above was ALL about error condition
Best regards
Arne

---

[2001-05-10 13:24:36] [EMAIL PROTECTED]
What error do you get?

Derick

---

[2001-05-10 12:22:08] [EMAIL PROTECTED]
PWS 4 running

---

[2001-05-10 12:19:25] [EMAIL PROTECTED]
[Script]
HTML
HEADTITLETesting PHP 1-st script/TITLE/HEAD
BODY
H2This is 1.st PHP-script/H2
Hello world!
?php
$foo= dog;
echo foo is for $foo;
?
/BODY
/HTML

[php.ini]

; Language Options ;


; Enable the PHP scripting language engine under Apache.
engine=On

; Allow the ? tag.  Otherwise, only ?php and script tags are recognized.
short_open_tag=On

; Allow ASP-style % % tags.
asp_tags=Off

; The number of significant digits displayed in floating point numbers.
precision=14

; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
y2k_compliance=Off

; 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.
output_buffering=Off

; You can redirect all of the output of your scripts to a function.  For
; example, if you set output_handler to ob_gzhandler, output will be
; transparently compressed for browsers that support gzip or deflate encoding.
; Setting an output handler automatically turns on output buffering.
output_handler=

; Transparent output compression using the zlib library
; Valid values for this option are 'off', 'on', or a specific buffer size
; to be used for compression (default is 4KB)
zlib.output_compression=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.
implicit_flush=Off

; Whether to enable the ability to force arguments to be 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 in order 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).
allow_call_time_pass_reference=On


;
; Safe Mode
;
safe_mode=Off

safe_mode_exec_dir=

; 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=BAR).
;
; Note:  If this directive is empty, PHP will let the user modify ANY
; environment variable!
safe_mode_allowed_env_vars=PHP_

; 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.
safe_mode_protected_env_vars=LD_LIBRARY_PATH

; This directive allows you to disable certain functions for security reasons.
; It receives a comma-deliminated list of function names.  This directive is
; *NOT* affected by whether Safe Mode is turned On or Off.
disable_functions=

; Colors for Syntax Highlighting mode.  Anything that's acceptable in
; font color=?? would work.
highlight.string=#CC
highlight.comment=#FF9900
highlight.keyword=#006600
highlight.bg=#FF
highlight.default=#CC
highlight.html=#00


;
; Misc
;
; Decides whether PHP may expose the fact that it is installed on the server
; 

[PHP-DEV] Bug #10795 Updated: One of the library files needed to run this application cannot be found

2001-05-10 Thread arnev

ID: 10795
User Update by: [EMAIL PROTECTED]
Status: Open
Bug Type: PWS related
Operating system: Windows'98
PHP Version: 4.0.5
Description: One of the library files needed to run this application cannot be found

PWS 4 running

Previous Comments:
---

[2001-05-10 12:19:25] [EMAIL PROTECTED]
[Script]
HTML
HEADTITLETesting PHP 1-st script/TITLE/HEAD
BODY
H2This is 1.st PHP-script/H2
Hello world!
?php
$foo= dog;
echo foo is for $foo;
?
/BODY
/HTML

[php.ini]

; Language Options ;


; Enable the PHP scripting language engine under Apache.
engine=On

; Allow the ? tag.  Otherwise, only ?php and script tags are recognized.
short_open_tag=On

; Allow ASP-style % % tags.
asp_tags=Off

; The number of significant digits displayed in floating point numbers.
precision=14

; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
y2k_compliance=Off

; 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.
output_buffering=Off

; You can redirect all of the output of your scripts to a function.  For
; example, if you set output_handler to ob_gzhandler, output will be
; transparently compressed for browsers that support gzip or deflate encoding.
; Setting an output handler automatically turns on output buffering.
output_handler=

; Transparent output compression using the zlib library
; Valid values for this option are 'off', 'on', or a specific buffer size
; to be used for compression (default is 4KB)
zlib.output_compression=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.
implicit_flush=Off

; Whether to enable the ability to force arguments to be 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 in order 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).
allow_call_time_pass_reference=On


;
; Safe Mode
;
safe_mode=Off

safe_mode_exec_dir=

; 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=BAR).
;
; Note:  If this directive is empty, PHP will let the user modify ANY
; environment variable!
safe_mode_allowed_env_vars=PHP_

; 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.
safe_mode_protected_env_vars=LD_LIBRARY_PATH

; This directive allows you to disable certain functions for security reasons.
; It receives a comma-deliminated list of function names.  This directive is
; *NOT* affected by whether Safe Mode is turned On or Off.
disable_functions=

; Colors for Syntax Highlighting mode.  Anything that's acceptable in
; font color=?? would work.
highlight.string=#CC
highlight.comment=#FF9900
highlight.keyword=#006600
highlight.bg=#FF
highlight.default=#CC
highlight.html=#00


;
; Misc
;
; 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.
expose_php=On


;;;
; Resource Limits ;
;;;

max_execution_time=30 ; Maximum execution time of each script, in seconds
memory_limit=8M  ; Maximum amount of memory a script may consume (8MB)


;;
; Error handling and logging ;
;;

; error_reporting is a bit-field.  Or each number up to 

[PHP-DEV] Bug #10795 Updated: One of the library files needed to run this application cannot be found

2001-05-10 Thread derick

ID: 10795
Updated by: derick
Reported By: [EMAIL PROTECTED]
Old-Status: Open
Status: Feedback
Bug Type: PWS related
Operating system: 
PHP Version: 4.0.5
Assigned To: 
Comments:

What error do you get?

Derick

Previous Comments:
---

[2001-05-10 12:22:08] [EMAIL PROTECTED]
PWS 4 running

---

[2001-05-10 12:19:25] [EMAIL PROTECTED]
[Script]
HTML
HEADTITLETesting PHP 1-st script/TITLE/HEAD
BODY
H2This is 1.st PHP-script/H2
Hello world!
?php
$foo= dog;
echo foo is for $foo;
?
/BODY
/HTML

[php.ini]

; Language Options ;


; Enable the PHP scripting language engine under Apache.
engine=On

; Allow the ? tag.  Otherwise, only ?php and script tags are recognized.
short_open_tag=On

; Allow ASP-style % % tags.
asp_tags=Off

; The number of significant digits displayed in floating point numbers.
precision=14

; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
y2k_compliance=Off

; 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.
output_buffering=Off

; You can redirect all of the output of your scripts to a function.  For
; example, if you set output_handler to ob_gzhandler, output will be
; transparently compressed for browsers that support gzip or deflate encoding.
; Setting an output handler automatically turns on output buffering.
output_handler=

; Transparent output compression using the zlib library
; Valid values for this option are 'off', 'on', or a specific buffer size
; to be used for compression (default is 4KB)
zlib.output_compression=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.
implicit_flush=Off

; Whether to enable the ability to force arguments to be 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 in order 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).
allow_call_time_pass_reference=On


;
; Safe Mode
;
safe_mode=Off

safe_mode_exec_dir=

; 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=BAR).
;
; Note:  If this directive is empty, PHP will let the user modify ANY
; environment variable!
safe_mode_allowed_env_vars=PHP_

; 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.
safe_mode_protected_env_vars=LD_LIBRARY_PATH

; This directive allows you to disable certain functions for security reasons.
; It receives a comma-deliminated list of function names.  This directive is
; *NOT* affected by whether Safe Mode is turned On or Off.
disable_functions=

; Colors for Syntax Highlighting mode.  Anything that's acceptable in
; font color=?? would work.
highlight.string=#CC
highlight.comment=#FF9900
highlight.keyword=#006600
highlight.bg=#FF
highlight.default=#CC
highlight.html=#00


;
; Misc
;
; 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.
expose_php=On


;;;
; Resource Limits ;
;;;

max_execution_time=30 ; Maximum execution time of each script, in seconds
memory_limit=8M  ; Maximum amount of memory a script may consume (8MB)


;;
;