My problem is:
When I run demo.browse.php and try to read the data from one of my folders on the server, after 20-25 sec. the script would give up and give me a HTTP 500 - Internal server error, one of those: "The page cannot be displayed" white screens...
demo.browse.php works on most of the directories but it fails on the folder where I keep my sample mp3 files... (I have app. 200 highly compressed mp3 files in this directory.)
If I upload just a few sample (mp3) files to another folder, the script works. I spent hours trying to troubleshoot but I could not isolate which file or files are causing the problem....... I can't figure it out; looks like I need expert advice....
Where do I start? Is this an ID tag or server or script related problem?
Please help.
Im using getid 3-1.7.7
PHP ver. PHP v5.1.6
I set php.ini to display error messages, but the demo.browse.php script just fails without any warning.
Here is my php.ini script. I am on a shared (Apache) server.
Code: Select all
[PHP]
display_errors = On
allow_call_time_pass_reference = Off
magic_quotes_gpc = Off
output_buffering = 4096
register_argc_argv = Off
register_globals = Off
register_long_arrays = Off
variables_order = "GPCS"
zlib.output_compression = On
error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
fastcgi.log = 0
max_execution_time = 90
max_input_time = 60
memory_limit = 32M
safe_mode_exec_dir =
upload_max_filesize = 100M
;include_path = ".:/usr/local/share/pear"
[Session]
session.bug_compat_42 = 0
session.gc_divisor = 1000
session.hash_bits_per_character = 5
;[eaccelerator]
;;extension="eaccelerator.so"
;eaccelerator.cache_dir="/tmp"
;eaccelerator.shm_size="4"
;eaccelerator.shm_only="1"
; All PHP5 extensions are dynamic and could be loaded on demand.
; The following ones used to be pre-loaded by default in PHP4,
; so we keep these enabled for backward compatibility:
extension=ctype.so
; extension=xslt.so
extension=mysql.so
extension=pcre.so
extension=posix.so
extension=session.so
extension=tokenizer.so
extension=xml.so
extension=zlib.so
; extension=curl.so
; extension=ftp.so
extension=gd.so
;extension=gettext.so
;extension=iconv.so
;extension=imap.so
;extension=mbstring.so
;extension=mcrypt.so
;extension=mhash.so
;extension=openssl.so
;extension=simplexml.so
;extension=sockets.so
;extension=sqlite.so
;extension=dom.so
;extension=xsl.so
Thanks,
Laszlo