Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations sizbut on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Call to undefined function: doerror() in php

Status
Not open for further replies.

sam8599

Programmer
Feb 16, 2006
14
US
Hi All,

I am getting errors when I call in the page

Fatal error: Call to undefined function: doerror() in /home/u3/html/modules/Playlist/req.php on line 50

I am using php4

The php.ini file I am using is

Code:
[PHP]

; This is the default PHP 4-style version of the php.ini settings file.
; It is based on /usr/local/etc/php.ini-recommended. For full reference
; of all possible configuration directives and their default values,
; please visit [URL unfurl="true"]http://www.php.net/manual/en/print/ini.php[/URL]

allow_call_time_pass_reference = True	; Code cleanliness
magic_quotes_gpc = Off			; Performance
output_buffering = 4096			; Performance
register_argc_argv = Off		; Performance
;register_globals = Off                 ; Security, Performance [default]
variables_order = "GPCS"		; Performance
zlib.output_compression = Off		; Performance

cgi.fix_pathinfo = 1
error_reporting = E_ALL & ~E_NOTICE
fastcgi.log = 0
max_execution_time = 15
max_input_time = 60
memory_limit = 32M
safe_mode_exec_dir =
upload_max_filesize = 10M
url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"

;include_path = ".:/usr/local/share/pear"

[Session]
session.bug_compat_42 = 0
session.gc_divisor = 1000

[eaccelerator]
extension="eaccelerator.so"		; [Performance]
eaccelerator.cache_dir="/tmp"
eaccelerator.shm_size="4"
eaccelerator.shm_only="1"

; The following PHP4 extensions are pre-loaded by default (i.e. built static)
; - ctype
; - mysql
; - openssl
; - overload
; - pcre
; - posix
; - session
; - tokenizer
; - xml
; - zlib

; The following ones are dynamic and could be loaded on demand.
; In order to pre-load some of the following extensions,
; you would need to uncomment the appropriate line(s) below.

;extension=curl.so
;extension=domxml.so
;extension=ftp.so
;extension=gd.so
;extension=gettext.so
;extension=imap.so
;extension=mbstring.so
;extension=mcrypt.so
;extension=mhash.so
;extension=sockets.so
;extension=sqlite.so
;extension=templates.so
;extension=xslt.so
 
The first link points to the documentation of a PHP-based customer management application. The second to a Java object hierarchy. Are we talking about PHP or Java here?

But neither site specifies a PHP builtin function named "doerror()". The thing that comes closest is in the CMS codebase, which defines "[red]_[/red]doerror()", which would be different from a function named "doerror()".



Want the best answers? Ask the best questions! TANSTAAFL!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top