Advanced search  

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Pages: 1 [2]   Go Down

Author Topic: Error message during uploading jpg file  (Read 44143 times)

0 Members and 1 Guest are viewing this topic.

NormWinkel

  • Coppermine newbie
  • Offline Offline
  • Posts: 10
I tried it again...
« Reply #20 on: October 13, 2003, 10:23:55 pm »

I tried it again and received the same error as above...
Logged

NormWinkel

  • Coppermine newbie
  • Offline Offline
  • Posts: 10
Me again...
« Reply #21 on: October 13, 2003, 10:41:14 pm »

I have uploads turned on in PHP.INI and I am going to switch my config for Coppermine back to ImageMagick.

By the way - I recently moved my server, database, websites, etc. to another box. I was running PHP 4.3.2 on that box. When I moved the server, etc. to the new box I was having problems, I thought this was because I installed PHP 4.3.3 instead of PHP 4.3.2 on the new box.

The problems I ran into were with Gallery by Menalto. I couldn't get any support on their end. I did have Gallery working and uploads were working fine. I even uninstalled PHP 4.3.3 on the new box and then tried that for a couple of days (messing around with the php.ini config and their config file), but nothing. I could only upload small photos on theirs as well after the move to the new box. I gave up on their software because I couldn't figure it out. Coppermine does appear to be a lot better software. I would like to use it, so if you guys are willing to help me get it working I can give you my PHP Config settings and all my Server settings for the site when we get it up and running. So others with the same Server can benefit from previous attempt. Now I believe it is possible especially if I had Gallery running before.

I appreciate all the help I can get with this.

I believe it to be a PHP config issue. It could be a server config issue, but I don't believe it is because the server is portable. Meaning I reinstalled the server on the new box and then just copied the config file over. I also had to maintain directory structure. Meaning I had the Websites on D:\ Drive on the old box so they had to be on the same drive on the new box.

If you need any other info or access to anything through FTP, Web Administration for the Web Server, Etc. Just let me know and you can play around with it. That is if you feel up to it.
Logged

hyperion

  • VIP
  • Coppermine addict
  • ***
  • Offline Offline
  • Posts: 1317
  • - retired -
Error message during uploading jpg file
« Reply #22 on: October 13, 2003, 10:44:48 pm »

Okay, desperate times call for desperate measures.

1. Replace your entire php.inc file with this one.

Code: [Select]

[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

; Allow the <? tag.  Otherwise, only <?php and <scripttags are recognized.  
NOTE&#58; 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 controlbecause short tags may not
be supported on the target server. For portableredistributable code,
be sure not to use short tags.
short_open_tag Off

Allow ASP-style <% %> tags.
asp_tags Off

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

Enforce year 2000 compliance &#40;will cause problems with non-compliant browsers&#41;
y2k_compliance On

Output buffering allows you to send header lines &#40;including cookies&#41; even
after you send body contentat 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 &#40;e.g., output_buffering=4096&#41;.
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
; encoding will be transparently converted to the specified encoding.
; Setting any output handler automatically turns on output buffering.
; Note&#58; People who wrote portable scripts should not depend on this ini
;       directive. Instead, explicitly set the output handler using ob_start&#40;&#41;.
;       Using this ini directive may cause problems unless you know what script 
;       is doing.
; Note&#58; You cannot use both "mb_output_handler" with "ob_iconv_handler"
;       and you cannot use both "ob_gzhandler" and "zlib.output_compression". 
;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 &#40;default is 4KB&#41;
; Note&#58; Resulting chunk size may vary due to nature of compression. PHP 
;       outputs chunks that are few hundreds bytes each as a result of 
;       compression. If you prefer a larger chunk size for better 
;       performance, enable output_buffering in addition.
; Note&#58; You need to use zlib.output_handler instead of the standard
;       output_handler, or otherwise the output will be corrupted.
zlib.output_compression = Off

; You cannot specify additional output handlers if zlib.output_compression
; is activated here. This setting does the same as output_handler but in
; a different order.
;zlib.output_handler =

; 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&#40;&#41; after each and every call to print&#40;&#41; or echo&#40;&#41; 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

; The unserialize callback function will called &#40;with the undefind class'
name as parameter&#41;, if the unserializer finds an undefined class
which should be instanciated.
A warning appears if the specified function is not defined, or if the
; function doesn't include/implement the missing class.
; So only set this entry, if you really want to implement such a 
; callback-function.
unserialize_callback_func=

; When floats & doubles are serialized store serialize_precision significant
; digits after the floating point. The default value ensures that when floats
; are decoded with unserialize, the data will remain the same.
serialize_precision = 100

; 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 &#40;you will receive a warning each time
you use this feature, and the argument will be passed by value instead of by
reference&#41;.
allow_call_time_pass_reference On

Safe Mode
;
safe_mode Off

By default, Safe Mode does a UID compare check when
opening files. If you want to relax this to a GID compare,
then turn on safe_mode_gid.
safe_mode_gid Off

When safe_mode is onUID/GID checks are bypassed when
including files from this directory and its subdirectories.
; &
#40;directory must also be in include_path or full path must
be used when including&#41;
safe_mode_include_dir =                                                                

When safe_mode is ononly executables located in the safe_mode_exec_dir
will be allowed to be executed via the exec family of functions.
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_ &#40;e.g. PHP_FOO=BAR&#41;.
;
Note&#58;  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&#40;&#41;.  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

; open_basedir, if set, limits all file operations to the defined directory
; and below.  This directive makes most sense if used in a per-directory
; or per-virtualhost web server configuration file. This directive is
; *NOT* affected by whether Safe Mode is turned On or Off.
;open_basedir =

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

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

; Colors for Syntax Highlighting mode.  Anything that'
s acceptable in
; <font color="??????"would work.
;
highlight.string  #DD0000
;highlight.comment #FF9900
;highlight.keyword #007700
;highlight.bg      #FFFFFF
;highlight.default = #0000BB
;highlight.html    #000000


;
Misc
;
Decides whether PHP may expose the fact that it is installed on the server
; &#40;e.g. by adding its signature to the Web server header&#41;.  It is no security
threat in any waybut 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 scriptin seconds
max_input_time 
60        Maximum amount of time each script may spend parsing request data
memory_limit 
8M      Maximum amount of memory a script may consume &#40;8MB&#41;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
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 &#40;non-fatal errors&#41;
E_PARSE           compile-time parse errors
E_NOTICE          run-time notices &#40;these are warnings which often result
;                     from a bug in your codebut it's possible that it was
;                     intentional &#40;e.g., using an uninitialized variable and
;                     relying on the fact it'
s automatically initialized to an
;                     empty string&#41;
E_CORE_ERROR      fatal errors that occur during PHP's initial startup
; E_CORE_WARNING    - warnings &#40;non-fatal errors&#41; that occur during PHP'
s
;                     initial startup
E_COMPILE_ERROR   fatal compile-time errors
E_COMPILE_WARNING compile-time warnings &#40;non-fatal errors&#41;
E_USER_ERROR      user-generated error message
E_USER_WARNING    user-generated warning message
E_USER_NOTICE     user-generated notice message
;
Examples&#58;
;
;   - 
Show all errorsexcept for notices
;
;
error_reporting E_ALL & ~E_NOTICE
;
;   - 
Show only errors
;
;
error_reporting E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR
;
;   - 
Show all errors except for notices
;
error_reporting  =  E_ALL & ~E_NOTICE

; Print out errors &#40;as a part of the output&#41;.  For production web sites,
you're strongly encouraged to turn this feature off, and use error logging
; instead &#40;see below&#41;.  Keeping display_errors enabled on a production web site
; may reveal security information to end users, such as file paths on your Web
; server, your database schema or other information.
display_errors = On

; Even when display_errors is on, errors that occur during PHP'
s startup
sequence are not displayed.  It's strongly recommended to keep
; display_startup_errors off, except for when debugging.
display_startup_errors = Off

; Log errors into a log file &#40;server-specific log, stderr, or error_log &#40;below&#41;&#41;
; As stated above, you'
re strongly advised to use error logging in place of
error displaying on production web sites.
log_errors Off

Set maximum length of log_errorsIn error_log information about the source is
addedThe default is 1024 and 0 allows to not apply any maximum length at all.
log_errors_max_len 1024

; Do not log repeated messagesRepeated errors must occur in same file on same
line until ignore_repeated_source is set true.
ignore_repeated_errors Off

Ignore source of message when ignoring repeated messagesWhen this setting 
is On you will not log errors with repeated messages from different files or
sourcelines.
ignore_repeated_source Off

; If this parameter is set to Offthen memory leaks will not be shown &#40;on
stdout or in the log&#41;. This has only effect in a debug compile, and if 
error reporting includes E_WARNING in the allowed list
report_memleaks On

Store the last error/warning message in $php_errormsg &#40;boolean&#41;.
track_errors Off

Disable the inclusion of HTML tags in error messages.
;
html_errors Off
  
; If html_errors is set On PHP produces clickable error messages that direct 
to a page describing the error or function causing the error in detail.
You can download a copy of the PHP manual from http&#58;//www.php.net/docs.php 
; and change docref_root to the base URL of your local copy including the
leading '/'You must also specify the file extension being used including 
the dot.
;
docref_root "/phpmanual/"
;docref_ext = .html
  
String to output before an error message.
;
error_prepend_string "<font color=ff0000>"

String to output after an error message.
;
error_append_string "</font>"

Log errors to specified file.
;
error_log filename

Log errors to syslog &#40;Event Log on NT, not valid in Windows 95&#41;.
;error_log syslog


;;;;;;;;;;;;;;;;;
Data Handling ;
;;;;;;;;;;;;;;;;;
;
Note track_vars is ALWAYS enabled as of PHP 4.0.3

The separator used in PHP generated URLs to separate arguments.
; Default 
is "&"
;
arg_separator.output "&amp;"

; List of separator&#40;s&#41; used by PHP to parse input URLs into variables.
; Default is "&"
NOTE&#58; Every character in this directive is considered as separator!
;arg_separator.input ";&"

This directive describes the order in which PHP registers GETPOSTCookie,
Environment and Built-in variables &#40;G, P, C, E & S respectively, often
referred to as EGPCS or GPC&#41;.  Registration is done from left to right, newer
values override older values.
variables_order "EGPCS"

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[&#93;,
variables.
;
You should do your best to write your scripts so that they do not require
register_globals to be on;  Using form variables as globals can easily lead
to possible security problems, if the code is not very well thought of.
register_globals Off

This directive tells PHP whether to declare the argv&argc variables &#40;that
would contain the GET information&#41;.  If you don't use these variables, you
should turn it off for increased performance.
register_argc_argv On

Maximum size of POST data that PHP will accept.
post_max_size 8M

This directive is deprecated.  Use variables_order instead.
gpc_order "GPC"

Magic quotes
;

Magic quotes for incoming GET/POST/Cookie data.
magic_quotes_gpc On

Magic quotes for runtime-generated datae.gdata from SQLfrom exec&#40;&#41;, etc.
magic_quotes_runtime Off    

; Use Sybase-style magic quotes &#40;escape ' with '' instead of \'&#41;.
magic_quotes_sybase Off

Automatically add files before or after any PHP document.
auto_prepend_file =
auto_append_file =

; As 
of 4.0b4PHP always outputs a character encoding by default in
the Content-type&#58; header.  To disable sending of the charset, simply
set it to be empty.
;
PHP's built-in default is text/html
default_mimetype = "text/html"
;default_charset = "iso-8859-1"

; Always populate the $HTTP_RAW_POST_DATA variable.
;always_populate_raw_post_data = On


;;;;;;;;;;;;;;;;;;;;;;;;;
; Paths and Directories ;
;;;;;;;;;;;;;;;;;;;;;;;;;

; UNIX&#58; "/path1&#58;/path2"  
;include_path = ".&#58;/php/includes"
;
; Windows&#58; "\path1;\path2"
;include_path = ".;c&#58;\php\includes"

; The root of the PHP pages, used only if nonempty.
; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
; if you are running php as a CGI under any web server &#40;other than IIS&#41;
; see documentation for security issues.  The alternate is to use the
; cgi.force_redirect configuration below
doc_root =

; The directory under which PHP opens the script using /~username used only
; if nonempty.
user_dir =

; Directory in which the loadable extensions &#40;modules&#41; reside.
extension_dir = "..\php-4.3.2-Win32\extensions\"

; Whether or not to enable the dl&#40;&#41; function.  The dl&#40;&#41; function does NOT work
; properly in multithreaded servers, such as IIS or Zeus, and is automatically
; disabled on them.
enable_dl = On

; cgi.force_redirect is necessary to provide security running PHP as a CGI under
; most web servers.  Left undefined, PHP turns this on by default.  You can
; turn it off here AT YOUR OWN RISK
; **You CAN safely turn this off for IIS, in fact, you MUST.**
; cgi.force_redirect = 1

; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape 
; &#40;iPlanet&#41; web servers, you MAY need to set an environment variable name that PHP
; will look for to know it is OK to continue execution.  Setting this variable MAY
; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
; cgi.redirect_status_env = ;

; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI.  PHP'
s
previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
what PATH_INFO is.  For more information on PATH_INFOsee the cgi specs.  Setting
this to 1 will cause PHP CGI to fix it's paths to conform to the spec.  A setting
; of zero causes PHP to behave as before.  Default is zero.  You should fix your scripts
; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
; cgi.fix_pathinfo=0

; FastCGI under IIS &#40;on WINNT based OS&#41; supports the ability to impersonate
; security tokens of the calling client.  This allows IIS to define the
; security context that the request runs under.  mod_fastcgi under Apache
; does not currently support this feature &#40;03/17/2002&#41;
; Set to 1 if running under IIS.  Default is zero.
; fastcgi.impersonate = 1;

; cgi.rfc2616_headers configuration option tells PHP what type of headers to
; use when sending HTTP response code. If it'
s set 0 PHP sends Status&#58; header that
is supported by ApacheWhen this option is set to 1 PHP will send
RFC2616 compliant header.
Set to 1 if running under IIS.  Default is zero.
;
cgi.rfc2616_headers 
 

;;;;;;;;;;;;;;;;
File Uploads ;
;;;;;;;;;;;;;;;;

Whether to allow HTTP file uploads.
file_uploads On

Temporary directory for HTTP uploaded files &#40;will use system default if not
specified&#41;.
;upload_tmp_dir =

Maximum allowed size for uploaded files.
upload_max_filesize 2M


;;;;;;;;;;;;;;;;;;
Fopen wrappers ;
;;;;;;;;;;;;;;;;;;

Whether to allow the treatment of URLs &#40;like http&#58;// or ftp&#58;//&#41; as files.
allow_url_fopen On

Define the anonymous ftp password &#40;your email address&#41;
;from="john@doe.com"

Define the User-Agent string
user_agent="PHP"

; Default timeout for socket based streams &#40;seconds&#41;
default_socket_timeout 60

; If your scripts have to deal with files from Macintosh systems,
; or 
you are running on a Mac and need to deal with files from
unix or win32 systemssetting this flag will cause PHP to
automatically detect the EOL character in those files so that
fgets&#40;&#41; and file&#40;&#41; will work regardless of the source of the file.
auto_detect_line_endings Off


;;;;;;;;;;;;;;;;;;;;;;
Dynamic Extensions ;
;;;;;;;;;;;;;;;;;;;;;;
;
; If 
you wish to have an extension loaded automatically, use the following
syntax&#58;
;
;   
extension=modulename.extension
;
; For 
exampleon Windows&#58;
;
;   
extension=msql.dll
;
; ... or 
under UNIX&#58;
;
;   
extension=msql.so
;
Note that it should be the name of the module onlyno directory information 
needs to go here.  Specify the location of the extension with the
extension_dir directive above.


;
Windows Extensions
;Note that MySQL and ODBC support is now built inso no dll is needed for it.
;
;
extension=php_bz2.dll
;extension=php_cpdf.dll
;extension=php_crack.dll
;extension=php_curl.dll
;extension=php_db.dll
;extension=php_dba.dll
;extension=php_dbase.dll
;extension=php_dbx.dll
;extension=php_domxml.dll
;extension=php_exif.dll
;extension=php_fdf.dll
;extension=php_filepro.dll
extension
=php_gd2.dll
;extension=php_gettext.dll
;extension=php_hyperwave.dll
;extension=php_iconv.dll
;extension=php_ifx.dll
;extension=php_iisfunc.dll
;extension=php_imap.dll
;extension=php_interbase.dll
;extension=php_java.dll
;extension=php_ldap.dll
;extension=php_mbstring.dll
;extension=php_mcrypt.dll
;extension=php_mhash.dll
;extension=php_mime_magic.dll
;extension=php_ming.dll
;extension=php_mssql.dll
;extension=php_msql.dll
;extension=php_oci8.dll
;extension=php_openssl.dll
;extension=php_oracle.dll
;extension=php_pdf.dll
;extension=php_pgsql.dll
;extension=php_printer.dll
;extension=php_shmop.dll
;extension=php_snmp.dll
;extension=php_sockets.dll
;extension=php_sybase_ct.dll
;extension=php_w32api.dll
;extension=php_xmlrpc.dll
;extension=php_xslt.dll
;extension=php_yaz.dll
;extension=php_zip.dll


;;;;;;;;;;;;;;;;;;;
Module Settings ;
;;;;;;;;;;;;;;;;;;;

[
Syslog&#93;
Whether or not to define the various syslog variables &#40;e.g. $LOG_PID,
$LOG_CRONetc.&#41;.  Turning it off is a good idea performance-wise.  In
runtimeyou can define these variables by calling define_syslog_variables&#40;&#41;.
define_syslog_variables  Off

[mail function&#93;
; For Win32 only.
SMTP localhost

; For Win32 only.
sendmail_from me@localhost.com

; For Unix only.  You may supply arguments as well &#40;default&#58; "sendmail -t -i"&#41;.
;sendmail_path =

[
Java&#93;
;java.class.path = .\php_java.jar
;java.home c&#58;\jdk
;java.library c&#58;\jdk\jre\bin\hotspot\jvm.dll 
;java.library.path = .\

[
SQL&#93;
sql.safe_mode Off

[ODBC&#93;
;odbc.default_db    =  Not yet implemented
;odbc.default_user  =  Not yet implemented
;odbc.default_pw    =  Not yet implemented

Allow or prevent persistent links.
odbc.allow_persistent On

Check that a connection is still valid before reuse.
odbc.check_persistent On

Maximum number of persistent links.  -1 means no limit.
odbc.max_persistent = -1

Maximum number of links &#40;persistent + non-persistent&#41;.  -1 means no limit.
odbc.max_links = -1  

Handling of LONG fields.  Returns number of bytes to variables.  0 means
passthru.
odbc.defaultlrl 4096  

Handling of binary data.  0 means passthrureturn as is2 convert to char.
See the documentation on odbc_binmode and odbc_longreadlen for an explanation
of uodbc.defaultlrl and uodbc.defaultbinmode
odbc
.defaultbinmode 1  

[MySQL&#93;
Allow or prevent persistent links.
mysql.allow_persistent On

Maximum number of persistent links.  -1 means no limit.
mysql.max_persistent = -1

Maximum number of links &#40;persistent + non-persistent&#41;.  -1 means no limit.
mysql.max_links = -1

; Default port number for mysql_connect&#40;&#41;.  If unset, mysql_connect&#40;&#41; will use
the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
compile-time value defined MYSQL_PORT &#40;in that order&#41;.  Win32 will only look
at MYSQL_PORT.
mysql.default_port =

; Default 
socket name for local MySQL connects.  If empty, uses the built-in
MySQL defaults.
mysql.default_socket =

; Default 
host for mysql_connect&#40;&#41; &#40;doesn't apply in safe mode&#41;.
mysql.default_host =

; Default 
user for mysql_connect&#40;&#41; &#40;doesn't apply in safe mode&#41;.
mysql.default_user =

; Default 
password for mysql_connect&#40;&#41; &#40;doesn't apply in safe mode&#41;.
Note that this is generally a *badidea to store passwords in this file.
; *
Anyuser with PHP access can run 'echo get_cfg_var&#40;"mysql.default_password"&#41;
; and reveal this password!  And of course, any users with read access to this
; file will be able to reveal the password as well.
mysql.default_password =

; Maximum time &#40;in secondes&#41; for connect timeout. -1 means no limimt
mysql.connect_timeout = -1

; Trace mode. When trace_mode is active &#40;=On&#41;, warnings for table/index scans and
; SQL-Erros will be displayed.
mysql.trace_mode = Off

[mSQL&#93;
; Allow or prevent persistent links.
msql.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
msql.max_persistent = -1

; Maximum number of links &#40;persistent+non persistent&#41;.  -1 means no limit.
msql.max_links = -1

[PostgresSQL&#93;
; Allow or prevent persistent links.
pgsql.allow_persistent = On

; Detect broken persistent links always with pg_pconnect&#40;&#41;. Need a little overhead.
pgsql.auto_reset_persistent = Off 

; Maximum number of persistent links.  -1 means no limit.
pgsql.max_persistent = -1

; Maximum number of links &#40;persistent+non persistent&#41;.  -1 means no limit.
pgsql.max_links = -1

; Ignore PostgreSQL backends Notice message or not.
pgsql.ignore_notice = 0

; Log PostgreSQL backends Noitce message or not.
; Unless pgsql.ignore_notice=0, module cannot log notice message.
pgsql.log_notice = 0

[Sybase&#93;
; Allow or prevent persistent links.
sybase.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
sybase.max_persistent = -1

; Maximum number of links &#40;persistent + non-persistent&#41;.  -1 means no limit.
sybase.max_links = -1

;sybase.interface_file = "/usr/sybase/interfaces"

; Minimum error severity to display.
sybase.min_error_severity = 10

; Minimum message severity to display.
sybase.min_message_severity = 10

; Compatability mode with old 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.compatability_mode = Off

[Sybase-CT&#93;
; Allow or prevent persistent links.
sybct.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
sybct.max_persistent = -1

; Maximum number of links &#40;persistent + non-persistent&#41;.  -1 means no limit.
sybct.max_links = -1

; Minimum server message severity to display.
sybct.min_server_severity = 10

; Minimum client message severity to display.
sybct.min_client_severity = 10

[dbx&#93;
; returned column names can be converted for compatibility reasons
; possible values for dbx.colnames_case are
; "unchanged" &#40;default, if not set&#41;
; "lowercase"
; "uppercase"
; the recommended default is either upper- or lowercase, but
; unchanged is currently set for backwards compatibility
dbx.colnames_case = "unchanged"

[bcmath&#93;
; Number of decimal digits for all bcmath functions.
bcmath.scale = 0

[browscap&#93;
;browscap = extra/browscap.ini

[Informix&#93;
; Default host for ifx_connect&#40;&#41; &#40;doesn'
t apply in safe mode&#41;.
ifx.default_host =

; Default 
user for ifx_connect&#40;&#41; &#40;doesn't apply in safe mode&#41;.
ifx.default_user =

; Default 
password for ifx_connect&#40;&#41; &#40;doesn't apply in safe mode&#41;.
ifx.default_password =

Allow or prevent persistent links.
ifx.allow_persistent On

Maximum number of persistent links.  -1 means no limit.
ifx.max_persistent = -1

Maximum number of links &#40;persistent + non-persistent&#41;.  -1 means no limit.
ifx.max_links = -1

; If onselect statements return the contents of a text blob instead of its id.
ifx.textasvarchar 0

; If onselect statements return the contents of a byte blob instead of its id.
ifx.byteasvarchar 0

Trailing blanks are stripped from fixed-length char columns.  May help the
life of Informix SE users.
ifx.charasvarchar 0

; If onthe contents of text and byte blobs are dumped to a file instead of
keeping them in memory.
ifx.blobinfile 0

NULL's are returned as empty strings, unless this is set to 1.  In that case,
; NULL'
s are returned as string 'NULL'.
ifx.nullformat 0

[Session&#93;
Handler used to store/retrieve data.
session.save_handler files

Argument passed to save_handler.  In the case of filesthis is the path
where data files are storedNote&#58; Windows users have to change this 
variable in order to use PHP's session functions.
; As of PHP 4.0.1, you can define the path as&#58;
;     session.save_path = "N;/path"
; where N is an integer.  Instead of storing all the session files in 
; /path, what this will do is use subdirectories N-levels deep, and 
; store the session data in those directories.  This is useful if you 
; or your OS have problems with lots of files in one directory, and is 
; a more efficient layout for servers that handle lots of sessions.
; NOTE 1&#58; PHP will not create this directory structure automatically.
;         You can use the script in the ext/session dir for that purpose.
; NOTE 2&#58; See the section on garbage collection below if you choose to
;         use subdirectories for session storage
session.save_path = "C&#58;\PHP_sessions"

; Whether to use cookies.
session.use_cookies = 1

; This option enables administrators to make their users invulnerable to
; attacks which involve passing session ids in URLs; defaults to 0.
; session.use_only_cookies = 1

; Name of the session &#40;used as cookie name&#41;.
session.name = PHPSESSID

; Initialize session on request startup.
session.auto_start = 0

; Lifetime in seconds of cookie or, if 0, until browser is restarted.
session.cookie_lifetime = 0

; The path for which the cookie is valid.
session.cookie_path = /

; The domain for which the cookie is valid.
session.cookie_domain =

; Handler used to serialize data.  php is the standard serializer of PHP.
session.serialize_handler = php

; Define the probability that the '
garbage collection' process is started
; on every session initialization.
; The probability is calculated by using gc_probability/gc_divisor,
; e.g. 1/100 means there is a 1% chance that the GC process starts
; on each request.

session.gc_probability = 1
session.gc_divisor     = 100

; After this number of seconds, stored data will be seen as '
garbage' and
; cleaned up by the garbage collection process.
session.gc_maxlifetime = 1440

; NOTE&#58; If you are using the subdirectory option for storing session files
;       &#40;see session.save_path above&#41;, then garbage collection does *not*
;       happen automatically.  You will need to do your own garbage 
;       collection through a shell script, cron entry, or some other method. 
;       For example, the following script would is the equivalent of
;       setting session.gc_maxlifetime to 1440 &#40;1440 seconds = 24 minutes&#41;&#58;
;          cd /path/to/sessions; find -cmin +24 | xargs rm

; PHP 4.2 and less have an undocumented feature/bug that allows you to
; to initialize a session variable in the global scope, albeit register_globals
; is disabled.  PHP 4.3 and later will warn you, if this feature is used.
; You can disable the feature and the warning seperately. At this time,
; the warning is only displayed, if bug_compat_42 is enabled.

session.bug_compat_42 = 1
session.bug_compat_warn = 1

; Check HTTP Referer to invalidate externally stored URLs containing ids.
; HTTP_REFERER has to contain this substring for the session to be
; considered as valid.
session.referer_check =

; How many bytes to read from the file.
session.entropy_length = 0

; Specified here to create the session id.
session.entropy_file =

;session.entropy_length = 16

;session.entropy_file = /dev/urandom

; Set to &#123;nocache,private,public,&#125; to determine HTTP caching aspects
; or leave this empty to avoid sending anti-caching headers.
session.cache_limiter = nocache

; Document expires after n minutes.
session.cache_expire = 180

; trans sid support is disabled by default.
; Use of trans sid may risk your users security. 
; Use this option with caution.
; - User may send URL contains active session ID
;   to other person via. email/irc/etc.
; - URL that contains active session ID may be stored
;   in publically accessible computer.
; - User may access your site with the same session ID
;   always using URL stored in browser'
s history or bookmarks.
session.use_trans_sid 0

The URL rewriter will look for URLs in a defined set of HTML tags.
form/fieldset are special; if you include them herethe rewriter will
add a hidden <inputfield with the info which is otherwise appended
to URLs.  If you want XHTML conformityremove the form entry.
Note that all valid entries require "="even if no value follows.
url_rewriter.tags "a=href,area=href,frame=src,input=src,form=,fieldset="

[MSSQL&#93;
Allow or prevent persistent links.
mssql.allow_persistent On

Maximum number of persistent links.  -1 means no limit.
mssql.max_persistent = -1

Maximum number of links &#40;persistent+non persistent&#41;.  -1 means no limit.
mssql.max_links = -1

Minimum error severity to display.
mssql.min_error_severity 10

Minimum message severity to display.
mssql.min_message_severity 10

Compatability mode with old versions of PHP 3.0.
mssql.compatability_mode Off

Valid range 0 2147483647.  Default = 4096.
;mssql.textlimit 4096

Valid range 0 2147483647.  Default = 4096.
;mssql.textsize 4096

Limits the number of records in each batch.  all records in one batch.
;
mssql.batchsize 0

; Use NT authentication when connecting to the server
mssql
.secure_connection Off

Specify max number of processes. Default = 25
;mssql.max_procs 25

[Assertion&#93;
Assert&#40;expr&#41;; active by default.
;assert.active On

Issue a PHP warning for each failed assertion.
;
assert.warning On

Don't bail out by default.
;assert.bail = Off

; User-function to be called if an assertion fails.
;assert.callback = 0

; Eval the expression with current error_reporting&#40;&#41;.  Set to true if you want
; error_reporting&#40;0&#41; around the eval&#40;&#41;.
;assert.quiet_eval = 0

[Ingres II&#93;
; Allow or prevent persistent links.
ingres.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
ingres.max_persistent = -1

; Maximum number of links, including persistents.  -1 means no limit.
ingres.max_links = -1

; Default database &#40;format&#58; [node_id&#58;&#58;&#93;dbname[/srv_class&#93;&#41;.
ingres.default_database =

; Default user.
ingres.default_user =

; Default password.
ingres.default_password =

[Verisign Payflow Pro&#93;
; Default Payflow Pro server.
pfpro.defaulthost = "test-payflow.verisign.com"

; Default port to connect to.
pfpro.defaultport = 443

; Default timeout in seconds.
pfpro.defaulttimeout = 30

; Default proxy IP address &#40;if required&#41;.
;pfpro.proxyaddress =

; Default proxy port.
;pfpro.proxyport =

; Default proxy logon.
;pfpro.proxylogon =

; Default proxy password.
;pfpro.proxypassword =

[Sockets&#93;
; Use the system read&#40;&#41; function instead of the php_read&#40;&#41; wrapper.
sockets.use_system_read = On

[com&#93;
; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
;com.typelib_file = 
; allow Distributed-COM calls
;com.allow_dcom = true
; autoregister constants of a components typlib on com_load&#40;&#41;
;com.autoregister_typelib = true
; register constants casesensitive
;com.autoregister_casesensitive = false
; show warnings on duplicate constat registrations
;com.autoregister_verbose = true

[Printer&#93;
;printer.default_printer = ""

[mbstring&#93;
; language for internal character representation.
;mbstring.language = Japanese

; internal/script encoding.
; Some encoding cannot work as internal encoding.
; &#40;e.g. SJIS, BIG5, ISO-2022-*&#41;
;mbstring.internal_encoding = EUC-JP

; http input encoding.
;mbstring.http_input = auto

; http output encoding. mb_output_handler must be
; registered as output buffer to function
;mbstring.http_output = SJIS

; enable automatic encoding translation accoding to 
; mbstring.internal_encoding setting. Input chars are
; converted to internal encoding by setting this to On.
; Note&#58; Do _not_ use automatic encoding translation for
;       portable libs/applications.
;mbstring.encoding_translation = Off

; automatic encoding detection order.
; auto means 
;mbstring.detect_order = auto

; substitute_character used when character cannot be converted
; one from another
;mbstring.substitute_character = none;

; overload&#40;replace&#41; single byte functions by mbstring functions.
; mail&#40;&#41;, ereg&#40;&#41;, etc are overloaded by mb_send_mail&#40;&#41;, mb_ereg&#40;&#41;,
; etc. Possible values are 0,1,2,4 or combination of them.
; For example, 7 for overload everything.
; 0&#58; No overload
; 1&#58; Overload mail&#40;&#41; function
; 2&#58; Overload str*&#40;&#41; functions
; 4&#58; Overload ereg*&#40;&#41; functions
;mbstring.func_overload = 0

[FrontBase&#93;
;fbsql.allow_persistent = On
;fbsql.autocommit = On
;fbsql.default_database = 
;fbsql.default_database_password =
;fbsql.default_host =
;fbsql.default_password =
;fbsql.default_user = "_SYSTEM"
;fbsql.generate_warnings = Off
;fbsql.max_connections = 128
;fbsql.max_links = 128
;fbsql.max_persistent = -1
;fbsql.max_results = 128
;fbsql.batchSize = 1000

[Crack&#93;
; Modify the setting below to match the directory location of the cracklib
; dictionary files.  Include the base filename, but not the file extension.
; crack.default_dictionary = "c&#58;\php\lib\cracklib_dict"

[exif&#93;
; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS. 
; With mbstring support this will automatically be converted into the encoding
; given by corresponding encode setting. When empty mbstring.internal_encoding 
; is used. For the decode settings you can distinguish between motorola and 
; intel byte order. A decode setting cannot be empty.
;exif.encode_unicode = ISO-8859-15
;exif.decode_unicode_motorola = UCS-2BE
;exif.decode_unicode_intel    = UCS-2LE
;exif.encode_jis = 
;exif.decode_jis_motorola = JIS
;exif.decode_jis_intel    = JIS

; Local Variables&#58;
; tab-width&#58; 4
; End&#58;



This assumes you are using GD2. If not, put the semi-colon back in front of it.  Also, the sessionID directory is not standard, so change it to whatever you want it to be. Finally, the extension_dir need to be adjusted to you local environment.

2.  Reboot the computer. (not just the server software.)

3. Test again.

If this fails, I can only recommend that you install PHP again, from scratch. (Remove all ini and dll files, as well as main files).  You should also reinstall coppermine again from scratch. (clear all files and drop all related tables.)

If you have another box available with a server and PHP, try Coppermine on it.

Beyond that, you will have to make a sacrifice to the PHP gods and hope they smile upon you; I have exhausted my knowledge in this area.  :D
Logged
&quot;Then, Fletch,&quot; that bright creature said to him, and the voice was very kind, &quot;let&#039;s begin with level flight . . . .&quot;

-Richard Bach, Jonathan Livingston Seagull

(http://www.mozilla.org/products/firefox/buttons/getfirefox_small.png)

hyperion

  • VIP
  • Coppermine addict
  • ***
  • Offline Offline
  • Posts: 1317
  • - retired -
Error message during uploading jpg file
« Reply #23 on: October 13, 2003, 11:04:11 pm »

There is one other thing you might try before doing what I suggested above.

Edit line 37 of db_input.php:

Code: [Select]

    cpg_die(CRITICAL_ERROR, $lang_errors['param_missing'], __FILE__, __LINE__);

 
to

Code: [Select]

    print '<pre>';
    print_r($_REQUEST);
    print '</pre>';
    exit;


That will output any and all data you could possibly be getting.


If you desperately want to use CPG, you might consider using a more standard Windows//Apache/Xitami/IIS or Linux//Apache configuration on a test box. Alternatively, you could make use of tech support provided on www.keyfocus.net.  They know their product best.  Did you install PHP yourself, or did it come with KF Webserver?
Logged
&quot;Then, Fletch,&quot; that bright creature said to him, and the voice was very kind, &quot;let&#039;s begin with level flight . . . .&quot;

-Richard Bach, Jonathan Livingston Seagull

(http://www.mozilla.org/products/firefox/buttons/getfirefox_small.png)

ccjong

  • Coppermine newbie
  • Offline Offline
  • Posts: 6
    • http://www.fandcm.com
Error message during uploading jpg file
« Reply #24 on: October 13, 2003, 11:49:42 pm »

Thanks Hyperion.

After I restarted the web server, the picture upload problem is solved.

Really appreciate your help.

Bye for now.
Logged

hyperion

  • VIP
  • Coppermine addict
  • ***
  • Offline Offline
  • Posts: 1317
  • - retired -
Error message during uploading jpg file
« Reply #25 on: October 15, 2003, 02:13:46 am »

Quote from: "NormWinkel"

Thanks for all the help... I really appreciate it. I got the upload problem solved. It was my server. When I transfered to the new box and installed the server on the new box it was a newer version of the server I had been using.

I did reinstall PHP 4.3.3 and MySQL just to make sure I had made no errors. Then I compared the php.ini file to the old one. Everything was the same. The only thing left was the server and I figured that should have worked because it worked for Gallery on the old one. I even retested Gallery on the old one and reinstalled it on the new box to see if it worked there but it didn't. That only left me with the server to explore. As soon as I went to the support page for the server there was a newer version even than the one I had and it was only newer because of a bug fix that involved large CGI request. So that was my problem.


The remainder of this post was split to create it's own topic, as the problem was substantially different.

-Hyperion
Logged
&quot;Then, Fletch,&quot; that bright creature said to him, and the voice was very kind, &quot;let&#039;s begin with level flight . . . .&quot;

-Richard Bach, Jonathan Livingston Seagull

(http://www.mozilla.org/products/firefox/buttons/getfirefox_small.png)

yuch

  • Coppermine newbie
  • Offline Offline
  • Posts: 1
Error message during uploading jpg file
« Reply #26 on: December 25, 2003, 10:50:41 pm »

I got the same error as ccjong & NormWinkel
 (Script called without the required parameter(s)) when uploading images...

regarding the form config test hyperion suggested:

Quote
No, Apache is not required.  Just make sure your turn your web server software off and then back on so that it can reload the new php.ini after you make any changes to it.

This problem is definitely a configuration issue, so I want you to try the following script:

Code:

<?php
if (isset($_POST['action']) && $_POST['action'] == 'submitted') {
    print '<pre>';
    print_r($_POST);
    print '<a href="'. $_SERVER['PHP_SELF'] .'">Please try again</a>';

    print '</pre>';
} else {
?>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST">
    Name:  <input type="text" name="personal[name]"><br>
    Email: <input type="text" name="personal[email]"><br>
    Beer: <br>
    <select multiple name="beer[]">
        <option value="warthog">Warthog</option>
        <option value="guinness">Guinness</option>
        <option value="stuttgarter">Stuttgarter Schwabenbräu</option>
    </select><br>
    <input type="hidden" name="action" value="submitted">
    <input type="submit" name="submit" value="submit me!">
</form>
<?php
}
?>

Save it under whatever name you like, and run it. When you hit submit, the page will change to a printout if variables are being passed, otherwise, the form will appear with its default values.

Please let me know the outcome of the test.


I tried this out, and it did not work i.e. the form appeared with its default values. I've had problems with passing of variables in forms with my current host before. I fixed that with declaring $HTTP_POST_VARS as global, but I have no idea what it means...:(

btw, i have no access to the server, and i can't check the php version because they disabled it. i also doubt i can get them to change any settings since i'm on a free host (ionichost).  :?
Logged

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Error message during uploading jpg file
« Reply #27 on: December 26, 2003, 09:58:48 am »

link?

GauGau
Logged

hyperion

  • VIP
  • Coppermine addict
  • ***
  • Offline Offline
  • Posts: 1317
  • - retired -
Error message during uploading jpg file
« Reply #28 on: December 28, 2003, 12:44:34 pm »

See if it will fix your problem again.

Code: [Select]

<?php 
global $_POST;
if &
#40;isset&#40;$_POST['action'&#93;&#41; && $_POST['action'&#93; == 'submitted'&#41; &#123; 
print '<pre>'
print_r&#40;$_POST&#41;; 
print '<a href="'$_SERVER['PHP_SELF'&#93; .'">Please try again</a>'; 

print '</pre>'
&
#125; else &#123; 
?>

<form action="<?php echo $_SERVER['PHP_SELF'&#93;; ?>" method="POST">
Name: <input type="text" name="personal[name]"><br>
Email: <input type="text" name="personal[email]"><br>
Beer: <br>
<select multiple name="beer[]">
<option value="warthog">Warthog</option>
<option value="guinness">Guinness</option>
<option value="stuttgarter">Stuttgarter Schwabenbräu</option>
</select><br>
<input type="hidden" name="action" value="submitted">
<input type="submit" name="submit" value="submit me!">
</form>
<?php 
&#125; 
?>



Semantically, the global declaration is meaningless (there are no subroutines), but if it works, it works.
Logged
&quot;Then, Fletch,&quot; that bright creature said to him, and the voice was very kind, &quot;let&#039;s begin with level flight . . . .&quot;

-Richard Bach, Jonathan Livingston Seagull

(http://www.mozilla.org/products/firefox/buttons/getfirefox_small.png)

tfeld

  • Coppermine newbie
  • Offline Offline
  • Posts: 2
memory_limit problem
« Reply #29 on: February 01, 2004, 01:33:18 am »

I had this "Internal Server Error"-Message, too.
I got rid of it by increasing the memorylimit in php.ini to at least

memory_limit = 16M

Now it's working on my server. Maybe you guys have to play with the max_execution_time parameter, too. Especially if you are uploading with small bandwidths.

Have a nice day.
Logged
Pages: 1 [2]   Go Up
 

Page created in 0.046 seconds with 18 queries.