Zlib Deflate help

I am trying to implement compression/uncompression functionality into a java application I am building but have ran into a brick wall. The compressed file is read by a third-party application to which I am unable to change (i.e. I do not have access to the source code). The reason for uncompressing is to allow updates to certain areas of the file prior to the 3rd party application picking it up for processing.
I have partial source code for a C++ application which in fact correctly uncompresses and compresses the file, but have been unable to mimic the effects in java.
The compression method used is "zlib" which can be included in my java application via "java.util.zip". I was initially informed that the C++ deflate method used should be identical to the Deflater class methods in java (or rather the DeflaterOutputStream as I am working with files).
After completing the following method I have been unable to create an identical file to the compression method via the C++ application:
public void compressFile()
try
FileInputStream fileIn = new FileInputStream(inputFile);
FileOutputStream fileOut = new FileOutputStream(outputFile);
DeflaterOutputStream compressor = new DeflaterOutputStream(
fileOut, genieDeflate, OUTPUT_BUFFER_SIZE);
for (int c = fileIn.read(); c != -1; c = fileIn.read())
compressor.write(c);
compressor.close();
fileIn.close();
catch (IOException ex)
System.err.println(ex);
genieDeflate is a Deflater object using default values.
OUTPUT_BUFFER_SIZE = 0x2000, as viewed in C++ source code.
Any pointers? Possibly errors in the above code or other considerations I have neglected?
Many thanks

bitten to death
2.6.25.rcX fixed this
patch available somewhere
or simply edit kernel Makefile
1) find this line
KBUILD_CFLAGS
add
-fno-tree-scev-cprop
so complete line looks as follows:
KBUILD_CFLAGS   := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
                   -fno-strict-aliasing -fno-common \
                   -Werror-implicit-function-declaration \
                   -fno-tree-scev-cprop
save
kompile kernel

Similar Messages

  • Spanned file system with zip

    Hi
    Is there a way of creating a spanned file system with any of the current zip utilities (Native LabView or OpenG etc.)?
    Effectively the result should be z01, z02, etc. This format is something that both WinRAR and WinZIP accomplish, so the output would have to be compatible.
    The main issue is when compressing a whole directory. Files are rearranged in such a way that the output of all z01, z02 etc. is of the same size (users choice), and I don't quite know how the files are re-arranged in order to achieve that.
    Thanks  

    OpenG ZIP does not support spanning or stripped datafiles. The
    zerotolerance wrote:
    First, thanks for your reply.
    I actually have a zip utility that compresses strings rather than files. I believe that this utility can be used to create this spanning, but the trouble is it only gives the actual compressed body and not the required headers. 
    I don't know much about how the headers and how to create them (i.e. the crc32, relative path etc.) in a zip file.
    Most likely you just have the deflate algorrtihme in that "ZIP" utility. It is the compression algorithme normally used in ZIP but has nothing to do with ZIP itself. ZLIB is the most commonly used Open Source library for the deflate() algorithme and is also used in the OpenG ZIP library to implement the ZIP functionality. The function ZLIB Deflate.vi in OpenG ZIP exposes this functionality directly and does mthe same.
    zerotolerance wrote:
    First, thanks for your reply.
    But more importantly, how are the files within a directory arranged so that constant zip files (i.e. z01, z02 etc.) come out. 
    What I mean by this is the convept that WinRAR uses. So, if you have a directory with mixed file sizes in them, and you choose to have split size of 10MB, the output of each compressed file (i.e. z01, z02 etc.) is always 10MB, appart from the last one of course. 
    Some help in the headers and the rearrangement of files within a nested direcotry would go a long way.
    As for the cmd line, I don't like using that feature with labview because its very heavily limited. It does not give any intermitante control when a job is started. Just to see a simple progress as exe runs we have to jump through hoops, i.e. writting the output to file or clipborad and then reading etc. let alone anything else. and I'm also looking to add alot of other small features along the way, i.e. pausing, cancel, resume progress save, etc. So I definatly cannot take this route.
    So ZIP uses deflate() to compress the individucal file streams but the ZIP format is about creating management around it that allows to store multiple such streams into one physical file. It is a little like a filesystem inside a file.
    Adding Spanning and striping to OpenG ZIP would be possible and most of it could be done in the LabVIEW part of it, but there would also need to be some modifications to the underlaying shared library to support that. The spanning or striping is done in such a way that filestreams are cut up when necessary and continued in the next data file. The unzipping algorithme has then to be smart enough to recognize that and combine the streams again when uncompressing. For that the compression changes various flags in the header for each stream, which is the part where the shared library would need to be modified to allow those changed values to be writting (and also recognized on decompression). All in all quite a serious project undertaking.
    Refusing to use command line tools because they are ugly is not really a smart decision.
    Under Unix/Linux it is totally normal to do so and it makes the whole unix system very powerful as you don't need to write huge monotlithic monsters that do everything from making coffee, to cleaning the house and making the laundry but simply make a tool for each task and tie them together through command line chaining. Divide and master is the magic here, not not conquer and swallow!
    Also you have here the choice to use a command line tool and be done in 5 minutes, or write a tool like OpenG ZIP that took me probably several man months of work over time. Or wait until me or someone else changes OpenG to support this feature which could be 10 years.
    Alternatively you can also try to write a LabVIEW library to use the ZIPArchive shared library from http://www.artpol-software.com/ziparchive/KB/0610051553.aspx. But that is likely going to be a similar effort as writing OpenG ZIP was.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Problems setting up an Apache PHP and MySQL server(slvd)

    I folowed this guide: http://wiki.archlinux.org/index.php/LAMP and I did everything it says and everything is working well... but when I try to install any CMS that uses MySQL, it says that mysql is not running... Even with Nmap, it only shows that apache is running... anyone knows why ?
    when I'm installing Xoops, it prints this error:
    Fatal error:
    mysql extension not loaded in /home/httpd/html/xoops-2.2.3a-final-xpr/html/class/database/mysqldatabase.php on line 74
    But, phpMyAdmin runs without any errors... this is so strange...
    Can anyone help me ?
    Thanks in advance

    I don't have any extension=mysql.dll in my php.ini.... I just have extension=mysql.so...
    Here's my <?
       phpinfo();
    ?>
    This is Arch Linux, running PHP.
    PHP Logo
    PHP Version 5.1.1
    System Linux localhost 2.6.15 #4 PREEMPT Mon Jan 9 13:16:27 CAT 2006 i686
    Build Date Dec 5 2005 11:31:11
    Configure Command './configure' '--with-apxs2' '--prefix=/usr' '--sysconfdir=/etc' '--with-layout=PHP' '--with-ttf' '--enable-mailparse' '--with-config-file-scan-dir=/etc' '--enable-bcmath=shared' '--enable-calendar=shared' '--enable-ftp=shared' '--enable-gd-native-ttf' '--enable-magic-quotes' '--enable-posix=shared' '--enable-session' '--enable-shared' '--enable-shmop=shared' '--enable-pdo=shared' '--enable-sqlite-utf8' '--enable-sockets=shared' '--enable-xml' '--enable-sysvsem=shared' '--enable-sysvshm=shared' '--enable-sysvmsg=shared' '--enable-track-vars' '--enable-trans-sid' '--enable-safe-mode' '--with-imap' '--with-imap-ssl' '--with-ncurses' '--with-readline' '--with-bz2=shared' '--with-curl' '--with-mime-magic' '--with-freetype-dir=/usr' '--with-gd=shared' '--enable-exif' '--with-jpeg-dir=/usr' '--enable-dba' '--without-db2' '--without-db3' '--with-inifile' '--with-flatfile' '--with-gdbm' '--with-ldap=shared' '--with-openssl' '--with-gettext' '--with-unixODBC=shared,/usr' '--with-pdo-odbc=shared,unixODBC,/usr' '--with-mysqli=shared' '--with-mysql-sock=/tmp/mysql.sock' '--with-pdo-mysql=shared,/usr' '--with-mysql=shared,/usr' '--with-pgsql=shared' '--with-pgsql-sock=/tmp/pgsql.sock' '--with-pdo-pgsql=shared,/usr' '--with-sqlite=shared' '--with-pdo-sqlite=shared,/usr' '--with-pear=/usr/share/pear' '--with-dom' '--with-dom-xslt' '--with-xsl' '--with-png-dir=/usr' '--with-regex=php' '--with-zlib' '--enable-mbstring=all' '--enable-mbregex'
    Server API Apache 2.0 Handler
    Virtual Directory Support disabled
    Configuration File (php.ini) Path /usr/lib
    Scan this dir for additional .ini files /etc
    additional .ini files parsed /etc/php.ini
    PHP API 20041225
    PHP Extension 20050922
    Zend Extension 220051025
    Debug Build no
    Thread Safety disabled
    Zend Memory Manager enabled
    IPv6 Support enabled
    Registered PHP Streams php, file, http, ftp, compress.zlib, https, ftps, compress.bzip2
    Registered Stream Socket Transports tcp, udp, unix, udg, ssl, sslv3, sslv2, tls
    Registered Stream Filters string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, convert.iconv.*, zlib.*, bzip2.*
    Zend logo This program makes use of the Zend Scripting Language Engine:
    Zend Engine v2.1.0, Copyright (c) 1998-2005 Zend Technologies
    PHP Credits
    Configuration
    PHP Core
    Directive Local Value Master Value
    allow_call_time_pass_reference On On
    allow_url_fopen On On
    always_populate_raw_post_data Off Off
    arg_separator.input & &
    arg_separator.output & &
    asp_tags Off Off
    auto_append_file no value no value
    auto_globals_jit On On
    auto_prepend_file no value no value
    browscap no value no value
    default_charset no value no value
    default_mimetype text/html text/html
    define_syslog_variables Off Off
    disable_classes no value no value
    disable_functions no value no value
    display_errors On On
    display_startup_errors Off Off
    doc_root no value no value
    docref_ext no value no value
    docref_root no value no value
    enable_dl On On
    error_append_string no value no value
    error_log no value no value
    error_prepend_string no value no value
    error_reporting 2039 2039
    expose_php On On
    extension_dir /usr/lib/php/extensions/php /usr/lib/php/extensions/php
    file_uploads On On
    highlight.bg #FFFFFF #FFFFFF
    highlight.comment #FF8000 #FF8000
    highlight.default #0000BB #0000BB
    highlight.html #000000 #000000
    highlight.keyword #007700 #007700
    highlight.string #DD0000 #DD0000
    html_errors On On
    ignore_repeated_errors Off Off
    ignore_repeated_source Off Off
    ignore_user_abort Off Off
    implicit_flush Off Off
    include_path .:/usr/share/pear .:/usr/share/pear
    log_errors Off Off
    log_errors_max_len 1024 1024
    magic_quotes_gpc On On
    magic_quotes_runtime Off Off
    magic_quotes_sybase Off Off
    mail.force_extra_parameters no value no value
    max_execution_time 30 30
    max_input_time 60 60
    open_basedir no value no value
    output_buffering no value no value
    output_handler no value no value
    post_max_size 8M 8M
    precision 12 12
    realpath_cache_size 16K 16K
    realpath_cache_ttl 120 120
    register_argc_argv On On
    register_globals Off Off
    register_long_arrays Off Off
    report_memleaks On On
    report_zend_debug On On
    safe_mode Off Off
    safe_mode_exec_dir no value no value
    safe_mode_gid Off Off
    safe_mode_include_dir no value no value
    sendmail_from [email protected] [email protected]
    sendmail_path /usr/sbin/sendmail -t -i /usr/sbin/sendmail -t -i
    serialize_precision 100 100
    short_open_tag On On
    SMTP localhost localhost
    smtp_port 25 25
    sql.safe_mode Off Off
    track_errors Off Off
    unserialize_callback_func no value no value
    upload_max_filesize 2M 2M
    upload_tmp_dir no value no value
    user_dir no value no value
    variables_order EGPCS EGPCS
    xmlrpc_error_number 0 0
    xmlrpc_errors Off Off
    y2k_compliance On On
    zend.ze1_compatibility_mode Off Off
    apache2handler
    Apache Version Apache
    Apache API Version 20020903
    Server Administrator [email protected]
    Hostname:Port laptop-do-joao.net:0
    User/Group nobody(99)/99
    Max Requests Per Child: 0 - Keep Alive: on - Max Per Connection: 100
    Timeouts Connection: 300 - Keep-Alive: 15
    Virtual Server No
    Server Root /usr
    Loaded Modules core prefork http_core mod_so mod_access mod_actions mod_alias mod_asis mod_auth mod_auth_anon mod_auth_dbm mod_auth_digest mod_autoindex mod_cgi mod_dav mod_dav_fs mod_dir mod_env mod_expires mod_ext_filter mod_headers mod_imap mod_include mod_info mod_log_config mod_mime mod_negotiation mod_rewrite mod_setenvif mod_speling mod_ssl mod_status mod_userdir mod_vhost_alias mod_php5
    Directive Local Value Master Value
    engine 1 1
    last_modified 0 0
    xbithack 0 0
    Apache Environment
    Variable Value
    HTTP_HOST laptop-do-joao.net
    HTTP_USER_AGENT Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8) Gecko/20060104 Firefox/1.5
    HTTP_ACCEPT text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
    HTTP_ACCEPT_LANGUAGE en-us,en;q=0.5
    HTTP_ACCEPT_ENCODING gzip,deflate
    HTTP_ACCEPT_CHARSET ISO-8859-1,utf-8;q=0.7,*;q=0.7
    HTTP_KEEP_ALIVE 300
    HTTP_CONNECTION keep-alive
    PATH /bin:/usr/bin:/sbin:/usr/sbin
    SERVER_SIGNATURE <address>Apache Server at laptop-do-joao.net Port 80</address>
    SERVER_SOFTWARE Apache
    SERVER_NAME laptop-do-joao.net
    SERVER_ADDR 127.0.0.1
    SERVER_PORT 80
    REMOTE_ADDR 127.0.0.1
    DOCUMENT_ROOT /home/httpd/html
    SERVER_ADMIN [email protected]
    SCRIPT_FILENAME /home/httpd/html/test.php
    REMOTE_PORT 33973
    GATEWAY_INTERFACE CGI/1.1
    SERVER_PROTOCOL HTTP/1.1
    REQUEST_METHOD GET
    QUERY_STRING no value
    REQUEST_URI /test.php
    SCRIPT_NAME /test.php
    HTTP Headers Information
    HTTP Request Headers
    HTTP Request GET /test.php HTTP/1.1
    Host laptop-do-joao.net
    User-Agent Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8) Gecko/20060104 Firefox/1.5
    Accept text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
    Accept-Language en-us,en;q=0.5
    Accept-Encoding gzip,deflate
    Accept-Charset ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive 300
    Connection keep-alive
    HTTP Response Headers
    X-Powered-By PHP/5.1.1
    Keep-Alive timeout=15, max=100
    Connection Keep-Alive
    Transfer-Encoding chunked
    Content-Type text/html; charset=ISO-8859-1
    bcmath
    BCMath support enabled
    bz2
    BZip2 Support Enabled
    Stream Wrapper support compress.bz2://
    Stream Filter support bzip2.decompress, bzip2.compress
    BZip2 Version 1.0.3, 15-Feb-2005
    calendar
    Calendar support enabled
    ctype
    ctype functions enabled
    curl
    CURL support enabled
    CURL Information libcurl/7.15.0 OpenSSL/0.9.7h zlib/1.2.3
    date
    date/time support enabled
    Timezone Database Version 2005.14
    Timezone Database internal
    Default timezone Africa/Khartoum
    Directive Local Value Master Value
    date.timezone no value no value
    dba
    DBA support enabled
    Supported handlers gdbm cdb cdb_make inifile flatfile
    dom
    DOM/XML enabled
    DOM/XML API Version 20031129
    libxml Version 2.6.22
    HTML Support enabled
    XPath Support enabled
    XPointer Support enabled
    Schema Support enabled
    RelaxNG Support enabled
    exif
    EXIF Support enabled
    EXIF Version 1.4 $Id: exif.c,v 1.173.2.2 2005/10/10 06:09:25 helly Exp $
    Supported EXIF Version 0220
    Supported filetypes JPEG,TIFF
    ftp
    FTP support enabled
    gettext
    GetText Support enabled
    iconv
    iconv support enabled
    iconv implementation glibc
    iconv library version 2.3.5
    Directive Local Value Master Value
    iconv.input_encoding ISO-8859-1 ISO-8859-1
    iconv.internal_encoding ISO-8859-1 ISO-8859-1
    iconv.output_encoding ISO-8859-1 ISO-8859-1
    imap
    IMAP c-Client Version 2004
    SSL Support enabled
    libxml
    libXML support active
    libXML Version 2.6.22
    libXML streams enabled
    mbstring
    Multibyte Support enabled
    Multibyte string engine libmbfl
    Multibyte (japanese) regex support enabled
    Multibyte regex (oniguruma) version 3.7.1
    mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1.
    Directive Local Value Master Value
    mbstring.detect_order no value no value
    mbstring.encoding_translation Off Off
    mbstring.func_overload 0 0
    mbstring.http_input pass pass
    mbstring.http_output pass pass
    mbstring.internal_encoding ISO-8859-1 no value
    mbstring.language neutral neutral
    mbstring.substitute_character no value no value
    mime_magic
    mime_magic support enabled
    Directive Local Value Master Value
    mime_magic.debug Off Off
    mime_magic.magicfile /etc/httpd/conf/magic /etc/httpd/conf/magic
    mysql
    MySQL Support enabled
    Active Persistent Links 0
    Active Links 0
    Client API version 5.0.18
    MYSQL_MODULE_TYPE external
    MYSQL_SOCKET /tmp/mysql.sock
    MYSQL_INCLUDE -I/usr/include/mysql
    MYSQL_LIBS -L/usr/lib -lmysqlclient
    Directive Local Value Master Value
    mysql.allow_persistent On On
    mysql.connect_timeout 60 60
    mysql.default_host no value no value
    mysql.default_password no value no value
    mysql.default_port no value no value
    mysql.default_socket no value no value
    mysql.default_user no value no value
    mysql.max_links Unlimited Unlimited
    mysql.max_persistent Unlimited Unlimited
    mysql.trace_mode Off Off
    openssl
    OpenSSL support enabled
    OpenSSL Version OpenSSL 0.9.7h 11 Oct 2005
    pcre
    PCRE (Perl Compatible Regular Expressions) Support enabled
    PCRE Library Version 6.2 01-Aug-2005
    posix
    Revision $Revision: 1.70.2.1 $
    session
    Session Support enabled
    Registered save handlers files user
    Registered serializer handlers php php_binary
    Directive Local Value Master Value
    session.auto_start Off Off
    session.bug_compat_42 On On
    session.bug_compat_warn On On
    session.cache_expire 180 180
    session.cache_limiter nocache nocache
    session.cookie_domain no value no value
    session.cookie_lifetime 0 0
    session.cookie_path / /
    session.cookie_secure Off Off
    session.entropy_file no value no value
    session.entropy_length 0 0
    session.gc_divisor 100 100
    session.gc_maxlifetime 1440 1440
    session.gc_probability 1 1
    session.hash_bits_per_character 5 5
    session.hash_function 0 0
    session.name PHPSESSID PHPSESSID
    session.referer_check no value no value
    session.save_handler files files
    session.save_path /tmp /tmp
    session.serialize_handler php php
    session.use_cookies On On
    session.use_only_cookies Off Off
    session.use_trans_sid 0 0
    shmop
    shmop support enabled
    SimpleXML
    Simplexml support enabled
    Revision $Revision: 1.151.2.7 $
    Schema support enabled
    sockets
    Sockets Support enabled
    SPL
    SPL support enabled
    Interfaces Countable, OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject
    Classes AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, DirectoryIterator, DomainException, EmptyIterator, FilterIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RuntimeException, SimpleXMLIterator, SplFileObject, SplObjectStorage, UnderflowException, UnexpectedValueException
    standard
    Regex Library Bundled library enabled
    Dynamic Library Support enabled
    Path to sendmail /usr/sbin/sendmail -t -i
    Directive Local Value Master Value
    assert.active 1 1
    assert.bail 0 0
    assert.callback no value no value
    assert.quiet_eval 0 0
    assert.warning 1 1
    auto_detect_line_endings 0 0
    date.default_latitude 31.7667 31.7667
    date.default_longitude 35.2333 35.2333
    date.sunrise_zenith 90.83 90.83
    date.sunset_zenith 90.83 90.83
    default_socket_timeout 60 60
    safe_mode_allowed_env_vars PHP_ PHP_
    safe_mode_protected_env_vars LD_LIBRARY_PATH LD_LIBRARY_PATH
    url_rewriter.tags a=href,area=href,frame=src,input=src,form=,fieldset= a=href,area=href,frame=src,input=src,form=,fieldset=
    user_agent no value no value
    tokenizer
    Tokenizer Support enabled
    xml
    XML Support active
    XML Namespace Support active
    libxml2 Version 2.6.22
    xsl
    XSL enabled
    libxslt Version 1.1.15
    libxslt compiled against libxml Version 2.6.21
    EXSLT enabled
    libexslt Version 1.1.15
    zlib
    ZLib Support enabled
    Stream Wrapper support compress.zlib://
    Stream Filter support zlib.inflate, zlib.deflate
    Compiled Version 1.2.3
    Linked Version 1.2.3
    Directive Local Value Master Value
    zlib.output_compression Off Off
    zlib.output_compression_level -1 -1
    zlib.output_handler no value no value
    Additional Modules
    Module Name
    sysvsem
    sysvshm
    Environment
    Variable Value
    CONSOLE /dev/console
    TERM linux
    LD_LIBRARY_PATH /usr/lib:
    INIT_VERSION sysvinit-2.86
    PATH /bin:/usr/bin:/sbin:/usr/sbin
    RUNLEVEL 5
    PWD /
    PREVLEVEL N
    SHLVL 3
    HOME /
    BOOT_IMAGE Arch-2.6.15
    _ /usr/sbin/httpd
    PHP Variables
    Variable Value
    _SERVER["HTTP_HOST"] laptop-do-joao.net
    _SERVER["HTTP_USER_AGENT"] Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8) Gecko/20060104 Firefox/1.5
    _SERVER["HTTP_ACCEPT"] text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
    _SERVER["HTTP_ACCEPT_LANGUAGE"] en-us,en;q=0.5
    _SERVER["HTTP_ACCEPT_ENCODING"] gzip,deflate
    _SERVER["HTTP_ACCEPT_CHARSET"] ISO-8859-1,utf-8;q=0.7,*;q=0.7
    _SERVER["HTTP_KEEP_ALIVE"] 300
    _SERVER["HTTP_CONNECTION"] keep-alive
    _SERVER["PATH"] /bin:/usr/bin:/sbin:/usr/sbin
    _SERVER["SERVER_SIGNATURE"] <address>Apache Server at laptop-do-joao.net Port 80</address>
    _SERVER["SERVER_SOFTWARE"] Apache
    _SERVER["SERVER_NAME"] laptop-do-joao.net
    _SERVER["SERVER_ADDR"] 127.0.0.1
    _SERVER["SERVER_PORT"] 80
    _SERVER["REMOTE_ADDR"] 127.0.0.1
    _SERVER["DOCUMENT_ROOT"] /home/httpd/html
    _SERVER["SERVER_ADMIN"] [email protected]
    _SERVER["SCRIPT_FILENAME"] /home/httpd/html/test.php
    _SERVER["REMOTE_PORT"] 33973
    _SERVER["GATEWAY_INTERFACE"] CGI/1.1
    _SERVER["SERVER_PROTOCOL"] HTTP/1.1
    _SERVER["REQUEST_METHOD"] GET
    _SERVER["QUERY_STRING"] no value
    _SERVER["REQUEST_URI"] /test.php
    _SERVER["SCRIPT_NAME"] /test.php
    _SERVER["PHP_SELF"] /test.php
    _SERVER["REQUEST_TIME"] 1137274380
    _SERVER["argv"]
    Array
    _SERVER["argc"] 0
    _ENV["CONSOLE"] /dev/console
    _ENV["TERM"] linux
    _ENV["LD_LIBRARY_PATH"] /usr/lib:
    _ENV["INIT_VERSION"] sysvinit-2.86
    _ENV["PATH"] /bin:/usr/bin:/sbin:/usr/sbin
    _ENV["RUNLEVEL"] 5
    _ENV["PWD"] /
    _ENV["PREVLEVEL"] N
    _ENV["SHLVL"] 3
    _ENV["HOME"] /
    _ENV["BOOT_IMAGE"] Arch-2.6.15
    _ENV["_"] /usr/sbin/httpd
    PHP License
    This program is free software; you can redistribute it and/or modify it under the terms of the PHP License as published by the PHP Group and included in the distribution in the file: LICENSE
    This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    If you did not receive a copy of the PHP license, or have any questions about PHP licensing, please contact [email protected].

  • Oracle OCI CLIENT 11g is not connecting with PHP & Apache on Fedora

    Dear all... we are facing following issue... similar to other but not able to resolve ...
    Warning: oci_connect() [function.oci-connect]: OCIEnvNlsCreate() failed. There is something wrong with your system - please check that LD_LIBRARY_PATH includes the directory with Oracle Instant Client libraries in /var/www/html/waseem2.php on line 2
    our PHPinfo(); is showing following the OCI8 Extenstion Enabled
    PHP Version 5.2.9
    System      Linux localhost.localdomain 2.6.27.5-117.fc10.i686 #1 SMP Tue Nov 18 12:19:59 EST 2008 i686
    Build Date      Apr 17 2009 03:29:46
    Configure Command      './configure' '--build=i386-redhat-linux-gnu' '--host=i386-redhat-linux-gnu' '--target=i386-redhat-linux-gnu' '--program-prefix=' '--prefix=/usr' '--exec-prefix=/usr' '--bindir=/usr/bin' '--sbindir=/usr/sbin' '--sysconfdir=/etc' '--datadir=/usr/share' '--includedir=/usr/include' '--libdir=/usr/lib' '--libexecdir=/usr/libexec' '--localstatedir=/var' '--sharedstatedir=/var/lib' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--cache-file=../config.cache' '--with-libdir=lib' '--with-config-file-path=/etc' '--with-config-file-scan-dir=/etc/php.d' '--disable-debug' '--with-pic' '--disable-rpath' '--without-pear' '--with-bz2' '--with-curl' '--with-exec-dir=/usr/bin' '--with-freetype-dir=/usr' '--with-png-dir=/usr' '--with-xpm-dir=/usr' '--enable-gd-native-ttf' '--with-t1lib=/usr' '--without-gdbm' '--with-gettext' '--with-gmp' '--with-iconv' '--with-jpeg-dir=/usr' '--with-openssl' '--with-pcre-regex=/usr' '--with-zlib' '--with-layout=GNU' '--enable-exif' '--enable-ftp' '--enable-magic-quotes' '--enable-sockets' '--enable-sysvsem' '--enable-sysvshm' '--enable-sysvmsg' '--enable-wddx' '--with-kerberos' '--enable-ucd-snmp-hack' '--enable-shmop' '--enable-calendar' '--without-mime-magic' '--without-sqlite' '--with-libxml-dir=/usr' '--enable-xml' '--with-system-tzdata' '--with-apxs2=/usr/sbin/apxs' '--without-mysql' '--without-gd' '--disable-dom' '--disable-dba' '--without-unixODBC' '--disable-pdo' '--disable-xmlreader' '--disable-xmlwriter' '--disable-json' '--without-pspell'
    Server API      Apache 2.0 Handler
    Virtual Directory Support      disabled
    Configuration File (php.ini) Path      /etc
    Loaded Configuration File      /etc/php.ini
    Scan this dir for additional .ini files      /etc/php.d
    additional .ini files parsed      /etc/php.d/dbase.ini, /etc/php.d/json.ini, /etc/php.d/ldap.ini, /etc/php.d/mbstring.ini, /etc/php.d/mysql.ini, /etc/php.d/mysqli.ini, /etc/php.d/pdo.ini, /etc/php.d/pdo_mysql.ini, /etc/php.d/pdo_sqlite.ini, /etc/php.d/zip.ini
    PHP API      20041225
    PHP Extension      20060613
    Zend Extension      220060519
    Debug Build      no
    Thread Safety      disabled
    Zend Memory Manager      enabled
    IPv6 Support      enabled
    Registered PHP Streams      php, file, data, http, ftp, compress.bzip2, compress.zlib, https, ftps, zip
    Registered Stream Socket Transports      tcp, udp, unix, udg, ssl, sslv3, sslv2, tls
    Registered Stream Filters      string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, convert.iconv.*, bzip2.*, zlib.*
    Zend logo This program makes use of the Zend Scripting Language Engine:
    Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies
    PHP Credits
    Configuration
    PHP Core
    Directive     Local Value     Master Value
    allow_call_time_pass_reference     Off     Off
    allow_url_fopen     On     On
    allow_url_include     Off     Off
    always_populate_raw_post_data     Off     Off
    arg_separator.input     &     &
    arg_separator.output     &     &
    asp_tags     Off     Off
    auto_append_file     no value     no value
    auto_globals_jit     On     On
    auto_prepend_file     no value     no value
    browscap     no value     no value
    default_charset     no value     no value
    default_mimetype     text/html     text/html
    define_syslog_variables     Off     Off
    disable_classes     no value     no value
    disable_functions     no value     no value
    display_errors     On     On
    display_startup_errors     Off     Off
    doc_root     no value     no value
    docref_ext     no value     no value
    docref_root     no value     no value
    enable_dl     On     On
    error_append_string     no value     no value
    error_log     no value     no value
    error_prepend_string     no value     no value
    error_reporting     6143     6143
    expose_php     On     On
    extension_dir     /usr/lib/php/modules     /usr/lib/php/modules
    file_uploads     On     On
    highlight.bg     #FFFFFF     #FFFFFF
    highlight.comment     #FF8000     #FF8000
    highlight.default     #0000BB     #0000BB
    highlight.html     #000000     #000000
    highlight.keyword     #007700     #007700
    highlight.string     #DD0000     #DD0000
    html_errors     On     On
    ignore_repeated_errors     Off     Off
    ignore_repeated_source     Off     Off
    ignore_user_abort     Off     Off
    implicit_flush     Off     Off
    include_path     .:/usr/share/pear:/usr/share/php     .:/usr/share/pear:/usr/share/php
    log_errors     On     On
    log_errors_max_len     1024     1024
    magic_quotes_gpc     Off     Off
    magic_quotes_runtime     Off     Off
    magic_quotes_sybase     Off     Off
    mail.force_extra_parameters     no value     no value
    max_execution_time     30     30
    max_input_nesting_level     64     64
    max_input_time     60     60
    memory_limit     32M     32M
    open_basedir     no value     no value
    output_buffering     4096     4096
    output_handler     no value     no value
    post_max_size     8M     8M
    precision     14     14
    realpath_cache_size     16K     16K
    realpath_cache_ttl     120     120
    register_argc_argv     Off     Off
    register_globals     Off     Off
    register_long_arrays     Off     Off
    report_memleaks     On     On
    report_zend_debug     On     On
    safe_mode     Off     Off
    safe_mode_exec_dir     no value     no value
    safe_mode_gid     Off     Off
    safe_mode_include_dir     no value     no value
    sendmail_from     no value     no value
    sendmail_path     /usr/sbin/sendmail -t -i     /usr/sbin/sendmail -t -i
    serialize_precision     100     100
    short_open_tag     On     On
    SMTP     localhost     localhost
    smtp_port     25     25
    sql.safe_mode     Off     Off
    track_errors     Off     Off
    unserialize_callback_func     no value     no value
    upload_max_filesize     2M     2M
    upload_tmp_dir     no value     no value
    user_dir     no value     no value
    variables_order     EGPCS     EGPCS
    xmlrpc_error_number     0     0
    xmlrpc_errors     Off     Off
    y2k_compliance     On     On
    zend.ze1_compatibility_mode     Off     Off
    apache2handler
    Apache Version      Apache/2.2.11 (Fedora)
    Apache API Version      20051115
    Server Administrator      root@localhost
    Hostname:Port      localhost.localdomain:0
    User/Group      apache(48)/48
    Max Requests      Per Child: 4000 - Keep Alive: off - Max Per Connection: 100
    Timeouts      Connection: 120 - Keep-Alive: 15
    Virtual Server      No
    Server Root      /etc/httpd
    Loaded Modules      core prefork http_core mod_so mod_auth_basic mod_auth_digest mod_authn_file mod_authn_alias mod_authn_anon mod_authn_dbm mod_authn_default mod_authz_host mod_authz_user mod_authz_owner mod_authz_groupfile mod_authz_dbm mod_authz_default util_ldap mod_authnz_ldap mod_include mod_log_config mod_logio mod_env mod_ext_filter mod_mime_magic mod_expires mod_deflate mod_headers mod_usertrack mod_setenvif mod_mime mod_dav mod_status mod_autoindex mod_info mod_dav_fs mod_vhost_alias mod_negotiation mod_dir mod_actions mod_speling mod_userdir mod_alias mod_rewrite mod_proxy mod_proxy_balancer mod_proxy_ftp mod_proxy_http mod_proxy_connect mod_cache mod_suexec mod_disk_cache mod_file_cache mod_mem_cache mod_cgi mod_perl mod_php5 mod_proxy_ajp mod_python mod_ssl
    Directive     Local Value     Master Value
    engine     1     1
    last_modified     0     0
    xbithack     0     0
    Apache Environment
    Variable     Value
    LD_LIBRARY_PATH      /home/zubair/instantclient_11_1_
    HTTP_HOST      localhost
    HTTP_USER_AGENT      Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.4) Gecko/2008111217 Fedora/3.0.4-1.fc10 Firefox/3.0.4
    HTTP_ACCEPT      text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    HTTP_ACCEPT_LANGUAGE      en-us,en;q=0.5
    HTTP_ACCEPT_ENCODING      gzip,deflate
    HTTP_ACCEPT_CHARSET      ISO-8859-1,utf-8;q=0.7,*;q=0.7
    HTTP_KEEP_ALIVE      300
    HTTP_CONNECTION      keep-alive
    HTTP_COOKIE      PHPSESSID=he50pdhvtihu74lhmjnvggfr42
    PATH      /sbin:/usr/sbin:/bin:/usr/bin
    SERVER_SIGNATURE      <address>Apache/2.2.11 (Fedora) Server at localhost Port 80</address>
    SERVER_SOFTWARE      Apache/2.2.11 (Fedora)
    SERVER_NAME      localhost
    SERVER_ADDR      127.0.0.1
    SERVER_PORT      80
    REMOTE_ADDR      127.0.0.1
    DOCUMENT_ROOT      /var/www/html
    SERVER_ADMIN      root@localhost
    SCRIPT_FILENAME      /var/www/html/waseem.php
    REMOTE_PORT      39529
    GATEWAY_INTERFACE      CGI/1.1
    SERVER_PROTOCOL      HTTP/1.1
    REQUEST_METHOD      GET
    QUERY_STRING      no value
    REQUEST_URI      /waseem.php
    SCRIPT_NAME      /waseem.php
    HTTP Headers Information
    HTTP Request Headers
    HTTP Request      GET /waseem.php HTTP/1.1
    Host      localhost
    User-Agent      Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.4) Gecko/2008111217 Fedora/3.0.4-1.fc10 Firefox/3.0.4
    Accept      text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language      en-us,en;q=0.5
    Accept-Encoding      gzip,deflate
    Accept-Charset      ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive      300
    Connection      keep-alive
    Cookie      PHPSESSID=he50pdhvtihu74lhmjnvggfr42
    HTTP Response Headers
    X-Powered-By      PHP/5.2.9
    Connection      close
    Transfer-Encoding      chunked
    Content-Type      text/html; charset=UTF-8
    bz2
    BZip2 Support      Enabled
    Stream Wrapper support      compress.bz2://
    Stream Filter support      bzip2.decompress, bzip2.compress
    BZip2 Version      1.0.5, 10-Dec-2007
    calendar
    Calendar support      enabled
    ctype
    ctype functions      enabled
    curl
    cURL support      enabled
    cURL Information      libcurl/7.18.2 NSS/3.12.1.1 zlib/1.2.3 libidn/0.6.14 libssh2/0.18
    date
    date/time support      enabled
    "Olson" Timezone Database Version      0.system
    Timezone Database      internal
    Default timezone      Asia/Karachi
    Directive     Local Value     Master Value
    date.default_latitude     31.7667     31.7667
    date.default_longitude     35.2333     35.2333
    date.sunrise_zenith     90.583333     90.583333
    date.sunset_zenith     90.583333     90.583333
    date.timezone     no value     no value
    exif
    EXIF Support      enabled
    EXIF Version      1.4 $Id: exif.c,v 1.173.2.5.2.27 2008/12/31 11:17:37 sebastian Exp $
    Supported EXIF Version      0220
    Supported filetypes      JPEG,TIFF
    filter
    Input Validation and Filtering      enabled
    Revision      $Revision: 1.52.2.45 $
    Directive     Local Value     Master Value
    filter.default     unsafe_raw     unsafe_raw
    filter.default_flags     no value     no value
    ftp
    FTP support      enabled
    gettext
    GetText Support      enabled
    gmp
    gmp support      enabled
    GMP version      4.2.2
    hash
    hash support      enabled
    Hashing Engines      md2 md4 md5 sha1 sha256 sha384 sha512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru gost adler32 crc32 crc32b haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5
    iconv
    iconv support      enabled
    iconv implementation      glibc
    iconv library version      2.9
    Directive     Local Value     Master Value
    iconv.input_encoding     ISO-8859-1     ISO-8859-1
    iconv.internal_encoding     ISO-8859-1     ISO-8859-1
    iconv.output_encoding     ISO-8859-1     ISO-8859-1
    json
    json support      enabled
    json version      1.2.1
    ldap
    LDAP Support      enabled
    RCS Version      $Id: ldap.c,v 1.161.2.3.2.14 2008/12/31 11:17:39 sebastian Exp $
    Total Links      0/unlimited
    API Version      3001
    Vendor Name      OpenLDAP
    Vendor Version      20412
    SASL Support      Enabled
    libxml
    libXML support      active
    libXML Version      2.7.3
    libXML streams      enabled
    mbstring
    Multibyte Support      enabled
    Multibyte string engine      libmbfl
    Multibyte (japanese) regex support      enabled
    Multibyte regex (oniguruma) version      4.4.4
    Multibyte regex (oniguruma) backtrack check      On
    mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1.
    Directive     Local Value     Master Value
    mbstring.detect_order     no value     no value
    mbstring.encoding_translation     Off     Off
    mbstring.func_overload     0     0
    mbstring.http_input     pass     pass
    mbstring.http_output     pass     pass
    mbstring.internal_encoding     no value     no value
    mbstring.language     neutral     neutral
    mbstring.strict_detection     Off     Off
    mbstring.substitute_character     no value     no value
    mysql
    MySQL Support     enabled
    Active Persistent Links      0
    Active Links      0
    Client API version      5.0.84
    MYSQL_MODULE_TYPE      external
    MYSQL_SOCKET      /var/lib/mysql/mysql.sock
    MYSQL_INCLUDE      -I/usr/include/mysql
    MYSQL_LIBS      -L/usr/lib/mysql -lmysqlclient
    Directive     Local Value     Master Value
    mysql.allow_persistent     On     On
    mysql.connect_timeout     60     60
    mysql.default_host     no value     no value
    mysql.default_password     no value     no value
    mysql.default_port     no value     no value
    mysql.default_socket     no value     no value
    mysql.default_user     no value     no value
    mysql.max_links     Unlimited     Unlimited
    mysql.max_persistent     Unlimited     Unlimited
    mysql.trace_mode     Off     Off
    mysqli
    MysqlI Support     enabled
    Client API library version      5.0.84
    Client API header version      5.0.77
    MYSQLI_SOCKET      /var/lib/mysql/mysql.sock
    Directive     Local Value     Master Value
    mysqli.default_host     no value     no value
    mysqli.default_port     3306     3306
    mysqli.default_pw     no value     no value
    mysqli.default_socket     no value     no value
    mysqli.default_user     no value     no value
    mysqli.max_links     Unlimited     Unlimited
    mysqli.reconnect     Off     Off
    oci8
    OCI8 Support      enabled
    Version      1.3.5
    Revision      $Revision: 1.269.2.16.2.38.2.32 $
    Active Persistent Connections      0
    Active Connections      0
    Oracle Instant Client Version      11.1
    Temporary Lob support      enabled
    Collections support      enabled
    Directive     Local Value     Master Value
    oci8.connection_class     no value     no value
    oci8.default_prefetch     100     100
    oci8.events     Off     Off
    oci8.max_persistent     -1     -1
    oci8.old_oci_close_semantics     Off     Off
    oci8.persistent_timeout     -1     -1
    oci8.ping_interval     60     60
    oci8.privileged_connect     Off     Off
    oci8.statement_cache_size     20     20
    openssl
    OpenSSL support      enabled
    OpenSSL Version      OpenSSL 0.9.8g 19 Oct 2007
    pcre
    PCRE (Perl Compatible Regular Expressions) Support      enabled
    PCRE Library Version      7.8 2008-09-05
    Directive     Local Value     Master Value
    pcre.backtrack_limit     100000     100000
    pcre.recursion_limit     100000     100000
    PDO
    PDO support     enabled
    PDO drivers      mysql, sqlite
    pdo_mysql
    PDO Driver for MySQL, client library version     5.0.84
    pdo_sqlite
    PDO Driver for SQLite 3.x     enabled
    PECL Module version      1.0.1 $Id: pdo_sqlite.c,v 1.10.2.6.2.4 2008/12/31 11:17:42 sebastian Exp $
    SQLite Library      3.5.9
    posix
    Revision      $Revision: 1.70.2.3.2.22 $
    Reflection
    Reflection     enabled
    Version      $Id: php_reflection.c,v 1.164.2.33.2.55 2008/12/31 11:17:42 sebastian Exp $
    session
    Session Support      enabled
    Registered save handlers      files user
    Registered serializer handlers      php php_binary wddx
    Directive     Local Value     Master Value
    session.auto_start     Off     Off
    session.bug_compat_42     Off     Off
    session.bug_compat_warn     On     On
    session.cache_expire     180     180
    session.cache_limiter     nocache     nocache
    session.cookie_domain     no value     no value
    session.cookie_httponly     Off     Off
    session.cookie_lifetime     0     0
    session.cookie_path     /     /
    session.cookie_secure     Off     Off
    session.entropy_file     no value     no value
    session.entropy_length     0     0
    session.gc_divisor     1000     1000
    session.gc_maxlifetime     1440     1440
    session.gc_probability     1     1
    session.hash_bits_per_character     5     5
    session.hash_function     0     0
    session.name     PHPSESSID     PHPSESSID
    session.referer_check     no value     no value
    session.save_handler     files     files
    session.save_path     /var/lib/php/session     /var/lib/php/session
    session.serialize_handler     php     php
    session.use_cookies     On     On
    session.use_only_cookies     Off     Off
    session.use_trans_sid     0     0
    shmop
    shmop support      enabled
    SimpleXML
    Simplexml support     enabled
    Revision      $Revision: 1.151.2.22.2.46 $
    Schema support      enabled
    sockets
    Sockets Support      enabled
    SPL
    SPL support     enabled
    Interfaces      Countable, OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject
    Classes      AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, DirectoryIterator, DomainException, EmptyIterator, FilterIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RegexIterator, RuntimeException, SimpleXMLIterator, SplFileInfo, SplFileObject, SplObjectStorage, SplTempFileObject, UnderflowException, UnexpectedValueException
    standard
    Regex Library      Bundled library enabled
    Dynamic Library Support      enabled
    Path to sendmail      /usr/sbin/sendmail -t -i
    Directive     Local Value     Master Value
    assert.active     1     1
    assert.bail     0     0
    assert.callback     no value     no value
    assert.quiet_eval     0     0
    assert.warning     1     1
    auto_detect_line_endings     0     0
    default_socket_timeout     60     60
    safe_mode_allowed_env_vars     PHP_     PHP_
    safe_mode_protected_env_vars     LD_LIBRARY_PATH     LD_LIBRARY_PATH
    url_rewriter.tags     a=href,area=href,frame=src,input=src,form=fakeentry     a=href,area=href,frame=src,input=src,form=fakeentry
    user_agent     no value     no value
    sysvmsg
    sysvmsg support      enabled
    Revision      $Revision: 1.20.2.3.2.8 $
    tokenizer
    Tokenizer Support      enabled
    wddx
    WDDX Support     enabled
    WDDX Session Serializer      enabled
    xml
    XML Support      active
    XML Namespace Support      active
    libxml2 Version      2.7.3
    zip
    Zip      enabled
    Extension Version      $Id: php_zip.c,v 1.1.2.49 2009/02/05 19:53:22 pajoye Exp $
    Zip version      1.8.11
    Libzip version      0.9.0
    zlib
    ZLib Support      enabled
    Stream Wrapper support      compress.zlib://
    Stream Filter support      zlib.inflate, zlib.deflate
    Compiled Version      1.2.3
    Linked Version      1.2.3
    Directive     Local Value     Master Value
    zlib.output_compression     Off     Off
    zlib.output_compression_level     -1     -1
    zlib.output_handler     no value     no value
    Additional Modules
    Module Name
    dbase
    sysvsem
    sysvshm
    Environment
    Variable     Value
    TERM      xterm
    LD_LIBRARY_PATH      /home/zubair/instantclient_11_1/
    PATH      /sbin:/usr/sbin:/bin:/usr/bin
    PWD      /
    LANG      C
    SHLVL      2
    ORACLE_HOME      /home/zubair/instantclient_11_1/
    _      /usr/sbin/httpd
    PHP Variables
    Variable     Value
    _REQUEST["PHPSESSID"]     he50pdhvtihu74lhmjnvggfr42
    _COOKIE["PHPSESSID"]     he50pdhvtihu74lhmjnvggfr42
    SERVER["LDLIBRARY_PATH"]     /home/zubair/instantclient_11_1
    _SERVER["HTTP_HOST"]     localhost
    _SERVER["HTTP_USER_AGENT"]     Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.4) Gecko/2008111217 Fedora/3.0.4-1.fc10 Firefox/3.0.4
    _SERVER["HTTP_ACCEPT"]     text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    _SERVER["HTTP_ACCEPT_LANGUAGE"]     en-us,en;q=0.5
    _SERVER["HTTP_ACCEPT_ENCODING"]     gzip,deflate
    _SERVER["HTTP_ACCEPT_CHARSET"]     ISO-8859-1,utf-8;q=0.7,*;q=0.7
    _SERVER["HTTP_KEEP_ALIVE"]     300
    _SERVER["HTTP_CONNECTION"]     keep-alive
    _SERVER["HTTP_COOKIE"]     PHPSESSID=he50pdhvtihu74lhmjnvggfr42
    _SERVER["PATH"]     /sbin:/usr/sbin:/bin:/usr/bin
    _SERVER["SERVER_SIGNATURE"]     <address>Apache/2.2.11 (Fedora) Server at localhost Port 80</address>
    _SERVER["SERVER_SOFTWARE"]     Apache/2.2.11 (Fedora)
    _SERVER["SERVER_NAME"]     localhost
    _SERVER["SERVER_ADDR"]     127.0.0.1
    _SERVER["SERVER_PORT"]     80
    _SERVER["REMOTE_ADDR"]     127.0.0.1
    _SERVER["DOCUMENT_ROOT"]     /var/www/html
    _SERVER["SERVER_ADMIN"]     root@localhost
    _SERVER["SCRIPT_FILENAME"]     /var/www/html/waseem.php
    _SERVER["REMOTE_PORT"]     39529
    _SERVER["GATEWAY_INTERFACE"]     CGI/1.1
    _SERVER["SERVER_PROTOCOL"]     HTTP/1.1
    _SERVER["REQUEST_METHOD"]     GET
    _SERVER["QUERY_STRING"]     no value
    _SERVER["REQUEST_URI"]     /waseem.php
    _SERVER["SCRIPT_NAME"]     /waseem.php
    _SERVER["PHP_SELF"]     /waseem.php
    _SERVER["REQUEST_TIME"]     1253301146
    _ENV["TERM"]     xterm
    _ENV["LD_LIBRARY_PATH"]     /home/zubair/instantclient_11_1/
    _ENV["PATH"]     /sbin:/usr/sbin:/bin:/usr/bin
    _ENV["PWD"]     /
    _ENV["LANG"]     C
    _ENV["SHLVL"]     2
    _ENV["ORACLE_HOME"]     /home/zubair/instantclient_11_1/
    _ENV["_"]     /usr/sbin/httpd
    PHP License
    This program is free software; you can redistribute it and/or modify it under the terms of the PHP License as published by the PHP Group and included in the distribution in the file: LICENSE
    This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    If you did not receive a copy of the PHP license, or have any questions about PHP licensing, please contact [email protected].
    Have a nice day!
    Fatal error: Call to undefined function odbc_connect() in /var/www/html/waseem.php on line 20
    ------------------------------------------------------------------------------------------

    Is the problem with oci_connect or odbc_connect?
    The phpinfo() output shows '--without-unixODBC' which may be a root cause. There is no 'odbc' section shown in the phpinfo() output so I wouldn't expect odbc calls to work.
    But if the issue is with OCI8, then make sure that Oracle environment variables and LD_LIBRARY_PATH are set BEFORE starting Apache.
    More information on OCI8 and PHP is in http://www.oracle.com/technology/tech/php/underground-php-oracle-manual.html
    Also see http://wiki.oracle.com/page/PHP+Oracle+FAQ
    The PHP forum on OTN is http://www.oracle.com/technology/forums/php.html

  • Use DLL when no C source code

    I have a special proprietary type files, lets say .KTV
    There are several layers to the KTV file format:
    1. XML
    2.ZLib Deflate compresion
    3.Rijndael AES encryption
    well, I need to read the XML text. I know that Java already includes Deflate and AES algorithms so I could write an extractor.
    but,
    I was given a DLL file which is used in a CPP project just for the same purpose, and I assume i can use it to obtain XML output from KTV files. The big problem is that I have no idea of the methods, or their signatures the DLL files contains.
    Has anyone any ideas there should I start my investigation using the DLL for this purpose?

    I found this in a header file .h which is included in the .CPP file which has the method I want to tuse:
    basically I need to use only the ReadFile routine.
    Is is this a problem, that the method is inside a CPP class and is not standalone?
    Once I have this header file how should I implement the Java class?
    class KTV_API KTVFile
    public:
         enum Modes
              modeRead          = 0x00,
              modeWrite          = 0x01,
              modeNoHeader     = 0x02,
              modeNoCompress     = 0x40,
              modeNoEncrypt     = 0x80,
         KTVFile();
         ~KTVFile();
         bool Open(const _TCHAR* filename, int openMode);
         bool Close();
         unsigned int Read(void* buffer, unsigned int len);
         unsigned int Write(const void* buffer, unsigned int len);
    private:
         enum Masks
              maskCompressEncrypt     = 0xC0,
              maskVersion               = 0x3F,
         bool     IsWriting();
         bool     IsCompressionEnabled();
         bool     IsEncryptionEnabled();
         bool     IsHeaderEnabled();
         bool     WriteFile(const void* buffer, unsigned int len);
         int          ReadFile(void* buffer, unsigned int len);
         bool     Deflate(const unsigned char* buffer, unsigned int len, bool isFinal = false);
         int          Inflate(unsigned char* buffer, unsigned int len, bool isFinal = false);
         bool     Encrypt(const void* buffer, unsigned int len);
         int          Decrypt(void* buffer, unsigned int len);
         int                    m_openMode;
         FILE*               m_pFile;
         unsigned char*     m_inbuf;
         unsigned char*  m_inbuf_start;
         unsigned char*     m_inbuf_end;
         unsigned char*     m_zbuf;
         unsigned char*     m_cryptbuf;
         z_stream          m_Zstream;
         CRijndael*          m_pRijndael;
    };

  • Joomla on Sun webserver 7 php safe_mode

    Hi,
    Trying to install joomla on solaris 10 with sun webserver 7 and mysql. Got php installed and working fine, but when going through the joomla config, it needs safe_mode to be set to Off. However, when I make this change in the php.ini file its not reflected in phpinfo(). Its like its still set to on. I have confirmed that the php.ini settings are being read as other changes are reflected. Just seems to have a problem with this setting. Any ideas?
    Thanks,
    Darren

    I installed php using the phppack and followed the sun docs. sun/webserver7/plugins/php
    Also, with suns pack I think safe_mode is On by default from what I can tell.
    Thoughts?
    OUTPUT:
    PHP Version 5.2.0
    System SunOS joomla.lethbridgecollege.ab.ca 5.10 Generic_118833-33 sun4u
    Build Date Jan 29 2007 22:23:57
    Configure Command './configure' '--prefix=/java/re/phppack/5.2.0/nightly/ws/b01-2007-01-29/solaris-sparc/dist/5.2.0/SunOS5.8_OPT.OBJ/php' '--bindir=/java/re/phppack/5.2.0/nightly/ws/b01-2007-01-29/solaris-sparc/dist/5.2.0/SunOS5.8_OPT.OBJ/php/bin/' '--libdir=/java/re/phppack/5.2.0/nightly/ws/b01-2007-01-29/solaris-sparc/dist/5.2.0/SunOS5.8_OPT.OBJ/php/lib/' '--libexecdir=/java/re/phppack/5.2.0/nightly/ws/b01-2007-01-29/solaris-sparc/dist/5.2.0/SunOS5.8_OPT.OBJ/php/libexec/' '--enable-force-cgi-redirect' '--disable-rpath' '--enable-safe-mode' '--enable-ftp' '--enable-sockets' '--enable-memory-limit' '--enable-inline-optimization' '--enable-zlib' '--enable-soap' '--with-dba' '--enable-sysvmsg' '--enable-sysvsem' '--enable-sysvshm' '--enable-sqlite-utf8' '--enable-zend-multibyte' '--enable-bcmath' '--enable-exif' '--enable-magic-quotes' '--enable-wddx' '--enable-mbstring' '--enable-mbstr-enc-trans' '--enable-mbregex' '--enable-gd-native-ttf' '--with-pcre-regex=/h/iws-files/s/b/c/pcre/6.7/SunOS5.8_OPT.OBJ' '--with-iconv-dir=/h/iws-files/s/b/c/libiconv/1.11/SunOS5.8_OPT.OBJ' '--with-libxml-dir=/h/iws-files/s/b/c/libxml2/2.6.27/SunOS5.8_OPT.OBJ' '--with-zlib=/h/iws-files/s/b/c/zlib/1.2.3/SunOS5.8_OPT.OBJ' '--with-mysql=/h/iws-files/s/b/c/mysql/5.0.27/SunOS5.8_OPT.OBJ' '--with-mysqli=/h/iws-files/s/b/c/mysql/5.0.27/SunOS5.8_OPT.OBJ/bin/mysql_config' '--with-pgsql=/h/iws-files/s/b/c/postgresql/8.1.5/SunOS5.8_OPT.OBJ' '--enable-cli' '--enable-cgi' '--enable-fastcgi' '--enable-debugger'
    Server API CGI/FastCGI
    Virtual Directory Support disabled
    Configuration File (php.ini) Path /java/re/phppack/5.2.0/nightly/ws/b01-2007-01-29/solaris-sparc/dist/5.2.0/SunOS5.8_OPT.OBJ/php/lib/
    PHP API 20041225
    PHP Extension 20060613
    Zend Extension 220060519
    Debug Build no
    Thread Safety disabled
    Zend Memory Manager enabled
    IPv6 Support enabled
    Registered PHP Streams php, file, data, http, ftp, compress.zlib
    Registered Stream Socket Transports tcp, udp, unix, udg
    Registered Stream Filters string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, convert.iconv.*, zlib.*
    This program makes use of the Zend Scripting Language Engine:
    Zend Engine v2.2.0, Copyright (c) 1998-2006 Zend Technologies
    PHP Credits
    Configuration
    PHP Core
    Directive Local Value Master Value
    allow_call_time_pass_reference On On
    allow_url_fopen On On
    allow_url_include Off Off
    always_populate_raw_post_data Off Off
    arg_separator.input & &
    arg_separator.output & &
    asp_tags Off Off
    auto_append_file no value no value
    auto_globals_jit On On
    auto_prepend_file no value no value
    browscap no value no value
    default_charset no value no value
    default_mimetype text/html text/html
    define_syslog_variables Off Off
    detect_unicode On On
    disable_classes no value no value
    disable_functions no value no value
    display_errors On On
    display_startup_errors Off Off
    doc_root no value no value
    docref_ext no value no value
    docref_root no value no value
    enable_dl On On
    error_append_string no value no value
    error_log no value no value
    error_prepend_string no value no value
    error_reporting no value no value
    expose_php On On
    extension_dir /java/re/phppack/5.2.0/nightly/ws/b01-2007-01-29/solaris-sparc/dist/5.2.0/SunOS5.8_OPT.OBJ/php/lib//extensions/no-debug-non-zts-20060613 /java/re/phppack/5.2.0/nightly/ws/b01-2007-01-29/solaris-sparc/dist/5.2.0/SunOS5.8_OPT.OBJ/php/lib//extensions/no-debug-non-zts-20060613
    file_uploads On On
    highlight.bg #FFFFFF #FFFFFF
    highlight.comment #FF8000 #FF8000
    highlight.default #0000BB #0000BB
    highlight.html #000000 #000000
    highlight.keyword #007700 #007700
    highlight.string #DD0000 #DD0000
    html_errors On On
    ignore_repeated_errors Off Off
    ignore_repeated_source Off Off
    ignore_user_abort Off Off
    implicit_flush Off Off
    include_path .:/java/re/phppack/5.2.0/nightly/ws/b01-2007-01-29/solaris-sparc/dist/5.2.0/SunOS5.8_OPT.OBJ/php/lib//php .:/java/re/phppack/5.2.0/nightly/ws/b01-2007-01-29/solaris-sparc/dist/5.2.0/SunOS5.8_OPT.OBJ/php/lib//php
    log_errors Off Off
    log_errors_max_len 1024 1024
    magic_quotes_gpc On On
    magic_quotes_runtime Off Off
    magic_quotes_sybase Off Off
    mail.force_extra_parameters no value no value
    max_execution_time 30 30
    max_input_time -1 -1
    memory_limit 16M 16M
    open_basedir no value no value
    output_buffering 0 0
    output_handler no value no value
    post_max_size 8M 8M
    precision 14 14
    realpath_cache_size 16K 16K
    realpath_cache_ttl 120 120
    register_argc_argv On On
    register_globals Off Off
    register_long_arrays On On
    report_memleaks On On
    report_zend_debug On On
    safe_mode On On
    safe_mode_exec_dir /usr/local/php/bin /usr/local/php/bin
    safe_mode_gid Off Off
    safe_mode_include_dir no value no value
    sendmail_from no value no value
    sendmail_path /usr/lib/sendmail -t -i /usr/lib/sendmail -t -i
    serialize_precision 100 100
    short_open_tag On On
    SMTP localhost localhost
    smtp_port 25 25
    sql.safe_mode Off Off
    track_errors Off Off
    unserialize_callback_func no value no value
    upload_max_filesize 2M 2M
    upload_tmp_dir no value no value
    user_dir no value no value
    variables_order EGPCS EGPCS
    xmlrpc_error_number 0 0
    xmlrpc_errors Off Off
    y2k_compliance On On
    zend.ze1_compatibility_mode Off Off
    bcmath
    BCMath support enabled
    ctype
    ctype functions enabled
    date
    date/time support enabled
    Timezone Database Version 2006.14
    Timezone Database internal
    Warning: phpinfo() [function.phpinfo]: It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We had to select 'UTC' because your platform doesn't provide functionality for the guessing algorithm in /opt/sun/webserver7/https-www-live/docs/info.php on line 1
    Default timezone UTC
    Directive Local Value Master Value
    date.default_latitude 31.7667 31.7667
    date.default_longitude 35.2333 35.2333
    date.sunrise_zenith 90.583333 90.583333
    date.sunset_zenith 90.583333 90.583333
    date.timezone no value no value
    dom
    DOM/XML enabled
    DOM/XML API Version 20031129
    libxml Version 2.6.27
    HTML Support enabled
    XPath Support enabled
    XPointer Support enabled
    Schema Support enabled
    RelaxNG Support enabled
    exif
    EXIF Support enabled
    EXIF Version 1.4 $Id: exif.c,v 1.173.2.5.2.4 2006/10/10 22:22:43 tony2001 Exp $
    Supported EXIF Version 0220
    Supported filetypes JPEG,TIFF
    filter
    Input Validation and Filtering enabled
    Revision $Revision: 1.52.2.25 $
    Directive Local Value Master Value
    filter.default unsafe_raw unsafe_raw
    filter.default_flags no value no value
    ftp
    FTP support enabled
    hash
    hash support enabled
    Hashing Engines md4 md5 sha1 sha256 sha384 sha512 ripemd128 ripemd160 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru gost adler32 crc32 crc32b haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5
    iconv
    iconv support enabled
    iconv implementation unknown
    iconv library version unknown
    Directive Local Value Master Value
    iconv.input_encoding ISO-8859-1 ISO-8859-1
    iconv.internal_encoding ISO-8859-1 ISO-8859-1
    iconv.output_encoding ISO-8859-1 ISO-8859-1
    json
    json support enabled
    json version 1.2.1
    libxml
    libXML support active
    libXML Version 2.6.27
    libXML streams enabled
    mbstring
    Multibyte Support enabled
    Multibyte string engine libmbfl
    Multibyte (japanese) regex support enabled
    Multibyte regex (oniguruma) version 4.4.4
    Multibyte regex (oniguruma) backtrack check On
    mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1.
    Directive Local Value Master Value
    mbstring.detect_order no value no value
    mbstring.encoding_translation Off Off
    mbstring.func_overload 0 0
    mbstring.http_input pass pass
    mbstring.http_output pass pass
    mbstring.internal_encoding ISO-8859-1 no value
    mbstring.language neutral neutral
    mbstring.script_encoding no value no value
    mbstring.strict_detection Off Off
    mbstring.substitute_character no value no value
    mysql
    MySQL Support enabled
    Active Persistent Links 0
    Active Links 0
    Client API version 5.0.27
    MYSQL_MODULE_TYPE external
    MYSQL_SOCKET /tmp/mysql.sock
    MYSQL_INCLUDE -I/h/iws-files/s/b/c/mysql/5.0.27/SunOS5.8_OPT.OBJ/include
    MYSQL_LIBS -L/h/iws-files/s/b/c/mysql/5.0.27/SunOS5.8_OPT.OBJ/lib -lmysqlclient
    Directive Local Value Master Value
    mysql.allow_persistent On On
    mysql.connect_timeout 60 60
    mysql.default_host no value no value
    mysql.default_password no value no value
    mysql.default_port no value no value
    mysql.default_socket no value no value
    mysql.default_user no value no value
    mysql.max_links Unlimited Unlimited
    mysql.max_persistent Unlimited Unlimited
    mysql.trace_mode Off Off
    mysqli
    MysqlI Support enabled
    Client API library version 5.0.27
    Client API header version 5.0.27
    MYSQLI_SOCKET /tmp/mysql.sock
    Directive Local Value Master Value
    mysqli.default_host no value no value
    mysqli.default_port 3306 3306
    mysqli.default_pw no value no value
    mysqli.default_socket no value no value
    mysqli.default_user no value no value
    mysqli.max_links Unlimited Unlimited
    mysqli.reconnect Off Off
    pcre
    PCRE (Perl Compatible Regular Expressions) Support enabled
    PCRE Library Version 6.7 04-Jul-2006
    PDO
    PDO support enabled
    PDO drivers sqlite2, sqlite
    pdo_sqlite
    PDO Driver for SQLite 3.x enabled
    PECL Module version (bundled) 1.0.1 $Id: pdo_sqlite.c,v 1.10.2.6 2006/01/01 12:50:12 sniper Exp $
    SQLite Library 3.3.7
    pgsql
    PostgreSQL Support enabled
    PostgreSQL(libpq) Version 8.1.5
    Multibyte character support enabled
    SSL support disabled
    Active Persistent Links 0
    Active Links 0
    Directive Local Value Master Value
    pgsql.allow_persistent On On
    pgsql.auto_reset_persistent Off Off
    pgsql.ignore_notice Off Off
    pgsql.log_notice Off Off
    pgsql.max_links Unlimited Unlimited
    pgsql.max_persistent Unlimited Unlimited
    posix
    Revision $Revision: 1.70.2.3.2.6 $
    Reflection
    Reflection enabled
    Version $Id: php_reflection.c,v 1.164.2.33.2.31 2006/10/18 16:35:15 johannes Exp $
    session
    Session Support enabled
    Registered save handlers files user sqlite
    Registered serializer handlers php php_binary wddx
    Directive Local Value Master Value
    session.auto_start Off Off
    session.bug_compat_42 On On
    session.bug_compat_warn On On
    session.cache_expire 180 180
    session.cache_limiter nocache nocache
    session.cookie_domain no value no value
    session.cookie_httponly Off Off
    session.cookie_lifetime 0 0
    session.cookie_path / /
    session.cookie_secure Off Off
    session.entropy_file no value no value
    session.entropy_length 0 0
    session.gc_divisor 100 100
    session.gc_maxlifetime 1440 1440
    session.gc_probability 1 1
    session.hash_bits_per_character 4 4
    session.hash_function 0 0
    session.name PHPSESSID PHPSESSID
    session.referer_check no value no value
    session.save_handler files files
    session.save_path no value no value
    session.serialize_handler php php
    session.use_cookies On On
    session.use_only_cookies Off Off
    session.use_trans_sid 0 0
    SimpleXML
    Simplexml support enabled
    Revision $Revision: 1.151.2.22.2.15 $
    Schema support enabled
    soap
    Soap Client enabled
    Soap Server enabled
    Directive Local Value Master Value
    soap.wsdl_cache 1 1
    soap.wsdl_cache_dir /tmp /tmp
    soap.wsdl_cache_enabled 1 1
    soap.wsdl_cache_limit 5 5
    soap.wsdl_cache_ttl 86400 86400
    sockets
    Sockets Support enabled
    SPL
    SPL support enabled
    Interfaces Countable, OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject
    Classes AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, DirectoryIterator, DomainException, EmptyIterator, FilterIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RegexIterator, RuntimeException, SimpleXMLIterator, SplFileInfo, SplFileObject, SplObjectStorage, SplTempFileObject, UnderflowException, UnexpectedValueException
    SQLite
    SQLite support enabled
    PECL Module version 2.0-dev $Id: sqlite.c,v 1.166.2.13.2.5 2006/10/20 21:28:31 tony2001 Exp $
    SQLite Library 2.8.17
    SQLite Encoding UTF-8
    Directive Local Value Master Value
    sqlite.assoc_case 0 0
    standard
    Regex Library Bundled library enabled
    Dynamic Library Support enabled
    Path to sendmail /usr/lib/sendmail -t -i
    Directive Local Value Master Value
    assert.active 1 1
    assert.bail 0 0
    assert.callback no value no value
    assert.quiet_eval 0 0
    assert.warning 1 1
    auto_detect_line_endings 0 0
    default_socket_timeout 60 60
    safe_mode_allowed_env_vars PHP_ PHP_
    safe_mode_protected_env_vars LD_LIBRARY_PATH LD_LIBRARY_PATH
    url_rewriter.tags a=href,area=href,frame=src,form=,fieldset= a=href,area=href,frame=src,form=,fieldset=
    user_agent no value no value
    sysvmsg
    sysvmsg support enabled
    Revision $Revision: 1.20.2.3.2.1 $
    tokenizer
    Tokenizer Support enabled
    wddx
    WDDX Support enabled
    WDDX Session Serializer enabled
    xml
    XML Support active
    XML Namespace Support active
    libxml2 Version 2.6.27
    xmlreader
    XMLReader enabled
    xmlwriter
    XMLWriter enabled
    zlib
    ZLib Support enabled
    Stream Wrapper support compress.zlib://
    Stream Filter support zlib.inflate, zlib.deflate
    Compiled Version 1.2.3
    Linked Version 1.2.3
    Directive Local Value Master Value
    zlib.output_compression Off Off
    zlib.output_compression_level -1 -1
    zlib.output_handler no value no value
    Additional Modules
    Module Name
    sysvsem
    sysvshm
    Environment
    Variable Value
    PHPRC /opt/sun/webserver7/plugins/php
    PHP_FCGI_CHILDREN 2
    PHP_FCGI_MAX_REQUEST 200
    FCGI_WEB_SERVER_ADDRS 127.0.0.1
    LD_LIBRARY_PATH /opt/sun/webserver7/plugins/php
    LD_LIBRARY_PATH_64 /opt/sun/webserver7/plugins/php/64
    PHP Variables
    Variable Value
    _SERVER["PHPRC"] /opt/sun/webserver7/plugins/php
    SERVER["PHPFCGI_CHILDREN"] 2
    _SERVER["PHP_FCGI_MAX_REQUEST"] 200
    _SERVER["FCGI_WEB_SERVER_ADDRS"] 127.0.0.1
    _SERVER["LD_LIBRARY_PATH"] /opt/sun/webserver7/lib:/opt/sun/webserver7/jdk/jre/lib/sparc/server:/opt/sun/webserver7/jdk/jre/lib/sparc:/opt/sun/webserver7/jdk/jre/lib/sparc/native_threads::/opt/sun/webserver7/lib:
    _SERVER["LD_LIBRARY_PATH_64"] /opt/sun/webserver7/plugins/php/64
    _SERVER["FCGI_ROLE"] RESPONDER
    _SERVER["HTTP_ACCEPT"] image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*
    _SERVER["HTTP_ACCEPT_LANGUAGE"] en-us
    _SERVER["HTTP_ACCEPT_ENCODING"] gzip, deflate
    _SERVER["HTTP_USER_AGENT"] Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
    _SERVER["HTTP_HOST"] joomla
    _SERVER["HTTP_CONNECTION"] Keep-Alive
    _SERVER["PATH"] /opt/sun/webserver7/bin:/opt/sun/webserver7/lib:/bin:/usr/sbin:/usr/bin:/usr/dt/bin:/usr/openwin/bin:/bin:/opt/sfw/bin:/export/root
    _SERVER["TZ"] Canada/Mountain
    _SERVER["SERVER_SOFTWARE"] Sun-Java-System-Web-Server/7.0
    _SERVER["SERVER_PORT"] 80
    _SERVER["SERVER_NAME"] joomla
    _SERVER["SERVER_URL"] http://joomla
    _SERVER["REMOTE_HOST"] 172.20.200.11
    _SERVER["REMOTE_ADDR"] 172.20.200.11
    _SERVER["HTTPS"] OFF
    _SERVER["GATEWAY_INTERFACE"] CGI/1.1
    _SERVER["SERVER_PROTOCOL"] HTTP/1.1
    _SERVER["REQUEST_METHOD"] GET
    _SERVER["SCRIPT_NAME"] /info.php
    _SERVER["PATH_TRANSLATED"] no value
    _SERVER["SERVER_HOSTNAME"] www-live
    _SERVER["SERVER_ADDR"] *
    _SERVER["ORIG_PATH_TRANSLATED"] /opt/sun/webserver7/https-www-live/docs/info.php
    _SERVER["ORIG_SCRIPT_NAME"] /info.php
    _SERVER["SCRIPT_FILENAME"] /opt/sun/webserver7/https-www-live/docs/info.php
    _SERVER["PATH_INFO"] no value
    _SERVER["PHP_SELF"] /info.php
    _SERVER["REQUEST_TIME"] 1177075610
    _SERVER["argv"] Array
    _SERVER["argc"] 0
    _ENV["PHPRC"] /opt/sun/webserver7/plugins/php
    _ENV["PHP_FCGI_CHILDREN"] 2
    _ENV["PHP_FCGI_MAX_REQUEST"] 200
    _ENV["FCGI_WEB_SERVER_ADDRS"] 127.0.0.1
    _ENV["LD_LIBRARY_PATH"] /opt/sun/webserver7/lib:/opt/sun/webserver7/jdk/jre/lib/sparc/server:/opt/sun/webserver7/jdk/jre/lib/sparc:/opt/sun/webserver7/jdk/jre/lib/sparc/native_threads::/opt/sun/webserver7/lib:
    _ENV["LD_LIBRARY_PATH_64"] /opt/sun/webserver7/plugins/php/64
    _ENV["FCGI_ROLE"] RESPONDER
    _ENV["HTTP_ACCEPT"] image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*
    _ENV["HTTP_ACCEPT_LANGUAGE"] en-us
    _ENV["HTTP_ACCEPT_ENCODING"] gzip, deflate
    _ENV["HTTP_USER_AGENT"] Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
    _ENV["HTTP_HOST"] joomla
    _ENV["HTTP_CONNECTION"] Keep-Alive
    _ENV["PATH"] /opt/sun/webserver7/bin:/opt/sun/webserver7/lib:/bin:/usr/sbin:/usr/bin:/usr/dt/bin:/usr/openwin/bin:/bin:/opt/sfw/bin:/export/root
    _ENV["TZ"] Canada/Mountain
    _ENV["SERVER_SOFTWARE"] Sun-Java-System-Web-Server/7.0
    _ENV["SERVER_PORT"] 80
    _ENV["SERVER_NAME"] joomla
    _ENV["SERVER_URL"] http://joomla
    _ENV["REMOTE_HOST"] 172.20.200.11
    _ENV["REMOTE_ADDR"] 172.20.200.11
    _ENV["HTTPS"] OFF
    _ENV["GATEWAY_INTERFACE"] CGI/1.1
    _ENV["SERVER_PROTOCOL"] HTTP/1.1
    _ENV["REQUEST_METHOD"] GET
    _ENV["SCRIPT_NAME"] /info.php
    _ENV["PATH_TRANSLATED"] no value
    _ENV["SERVER_HOSTNAME"] www-live
    _ENV["SERVER_ADDR"] *
    _ENV["ORIG_PATH_TRANSLATED"] /opt/sun/webserver7/https-www-live/docs/info.php
    _ENV["ORIG_SCRIPT_NAME"] /info.php
    _ENV["SCRIPT_FILENAME"] /opt/sun/webserver7/https-www-live/docs/info.php
    _ENV["PATH_INFO"] no value

  • Nullsoft's NSIS installer for Windows, ... UNIX worth knowing for Mac?

    Hi,
    There is no information at present as to installing NULSOFTS NSIS compiler, I have downloaded the files for the MAC OSx and would like to run a make of some sort, then run the nsi scrpits i wrote last month for a new program I've written. Could anybody on the disscussion groups aid me in installing this POSIX compiler because I believe it will work, and the files id downloaded did not come with an install wlkthru.
    I would like instructions, within GNU/(free software foundation>?) for OSx 10.4.5, and would like to do this work today if pos?
    Thanks so much. Obviously if you wnat more infor as to what its for I can send you to the website of its(for it, justifying in a sense) it usage.
    Ben.
    Powerbook G4   Mac OS X (10.4.5)   Entertaining
    Powerbook G4   Mac OS X (10.4.5)   Entertaining

    This should explain one of my issues with this problem.
    (here's PortAuthorities dump of the install attempt)
    ---> Building nsis with target all
    ld: unknown flag: -V
    make -C exehead
    ld: unknown flag: -V
    make[1]: Nothing to be done for `all'.
    gcc -Wall -Wl -s -o ../makensis ../build/zlib/deflate.o ../build/zlib/trees.o ../build/bzip2/blocksort.o ../build/bzip2/bzlib.o ../build/bzip2/compress.o ../build/bzip2/huffman.o ../build/7zip/7zGuids.o ../build/7zip/Common/CRC.o ../build/7zip/7zip/Compress/LZ/LZInWindow.o ../build/7zip/7zip/Compress/LZMA/LZMAEncoder.o ../build/7zip/7zip/Common/OutBuffer.o ../build/7zip/7zip/Compress/RangeCoder/RangeCoderBit.o ../build/7zip/Common/Alloc.o ../build/build.o ../build/crc32.o ../build/DialogTemplate.o ../build/exedata.o ../build/lang.o ../build/makenssi.o ../build/Plugins.o ../build/ResourceEditor.o ../build/ResourceVersionInfo.o ../build/script.o ../build/tokens.o ../build/util.o ../build/strlist.o ../build/growbuf.o ../build/mmap.o ../build/clzma.o ../build/lineparse.o ../build/ShConstants.o ../build/dirreader.o -lstdc++ -lpthread -liconv
    /usr/bin/ld: warning prebinding disabled because of undefined symbols
    /usr/bin/ld: Undefined symbols:
    _UnwindResume
    collect2: ld returned 1 exit status
    make: * [../makensis] Error 1
    Warning: the following items did not execute (for nsis): com.apple.activate com.apple.build com.apple.destroot com.apple.archive com.apple.install
    clues?

  • Need help with deflater

    Does anyone know how to use the deflater class of util.zip to compress data bytes?
    I can't use the standard streams provided by the package, it has to be done on the bytes.
    I'm not finding information on it anywhere except the API. There is one example, but when I used it on my data it was the same number of bytes after compression.
    If anyone can help me out here, that would be great.

    I'll give some more information here..
    I am wanting to compress many small objects, storing them in a file. I am testing it with a file made up of numbers, from 1-1,000,000, stored on disk with the same number of bytes, as a string. When I go to compress these values, I always end up with the same number of bytes as the original.
    The other test is done with a string, and the results on that varies-if there is a pattern, the bytes are less; and if there is not a pattern, the bytes are sometimes more.
    I guess what I am asking with the previous message is - will setting the compression strategy to FILTERED help that situation (if so, how do I do that? When I do it a call to needsInput() evaluates to true); if not, what route should I take?
    Thank you for your help here. It is appreciated. Usually when I post here I just need a little information, and it is always helpful.

  • _z_inflateInit_ referenced from symbol missing (zlib linking error)

    I am trying to compile a project that uses inflateInit, deflateInit, inflate, deflate, inflateEnd, deflateEnd, which are all from zlib.h... i know i am getting a linking error and it cannot find the implementation of these files. i have included libz.1.1.3.dylib within my project, i have tried including libz.dylib, i have also tried to put the
    OTHER_CFLAGS = -lz
    none of this has seemed to work. any help would be much appreciated ! ! !
    this is the definition for inflateInit and it calls zinflateInit which is also in zlib.h
    {#define inflateInit(strm) \
    inflateInit_((strm), ZLIB_VERSION, (int)sizeof(z_stream))
    ZEXTERN int ZEXPORT inflateInit_ OF((z_streamp strm,
    const char *version, int stream_size));
    when i build my project, the errors i get are :
    z_inflateInit, referenced from:
    foo()
    zinflate , referenced from:
    foo()
    symbols(s) not found collect2: Id returned 1 exit status

    http://discussions.apple.com/thread.jspa?threadID=1445315&tstart=0 ?

  • A little help with rutorrent

    Hi comrades,
    I use rtorrent in terminal without problems but recently I got interested in rutorrent.
    I've been following the rtorrent wiki and rutorrent wiki to get to this point.
    First of all rtorrent is working fine in terminal, but with rutorrent I only get to this far: http://i637.photobucket.com/albums/uu93 … 1403737709
    As you can see in the upeer right of the image it's trying to connect and in the log section is throwing me this:
    [25.06.2014 18:37:22] WebUI started.
    [25.06.2014 18:37:23] Bad response from server: (200 [parsererror,getplugins]) <?php require_once( "util.php" ); require_once( "settings.php" ); function pluginsSort($a, $b) { $lvl1 = (float) $a["info"]["plugin.runlevel"]; $lvl2 = (float) $b["info"]["plugin.runlevel"]; if($lvl1>$lvl2) return(1); if($lvl1<$lvl2) return(-1); return( strcmp($a["name"],$b["name"]) ); } function getFlag($permissions,$pname,$fname) { $ret = true; if(array_key_exists($pname,$permissions) && array_key_exists($fname,$permissions[$pname])) $ret = $permissions[$pname][$fname]; else if(array_key_exists("default",$permissions) && array_key_exists($fname,$permissions["default"])) $ret = $permissions["default"][$fname]; return($ret); } function getPluginInfo( $name, $permissions ) { $info = array( 'rtorrent.need'=>1, 'rtorrent.remote'=>'ok', 'rtorrent.external.warning'=>array(), 'rtorrent.external.error'=>array(), 'rtorrent.script.error'=>array(), 'rtorrent.php.error'=>array(), 'rtorrent.version'=>0x802, 'rtorrent.version.readable'=>'0.8.2', 'plugin.may_be_shutdowned'=>1, 'plugin.may_be_launched'=>1, 'plugin.runlevel'=>10.0, 'plugin.description'=>'', 'plugin.author'=>'unknown', 'plugin.dependencies'=>array(), 'php.version'=>0x50000, 'php.version.readable'=>'5.0.0', 'php.extensions.warning'=>array(), 'php.extensions.error'=>array(), 'web.external.warning'=>array(), 'web.external.error'=>array(), 'plugin.help'=>'', ); $fname = "../plugins/".$name."/plugin.info"; if(is_readable($fname)) { $lines = file($fname); foreach($lines as $line) { $fields = explode(":",$line,2); if(count($fields)==2) { $value = addcslashes(trim($fields[1]),"\\\'\"\n\r\t"); $field = trim($fields[0]); switch($field) { case "plugin.help": case "plugin.author": case "plugin.description": case "rtorrent.remote": { $info[$field] = $value; break; } case "plugin.may_be_shutdowned": case "plugin.may_be_launched": case "rtorrent.need": { $info[$field] = intval($value); break; } case "plugin.version": case "plugin.runlevel": { $info[$field] = floatval($value); break; } case "rtorrent.version": case "php.version": { $version = explode('.', $value); $info[$field] = (intval($version[0])<<16) + (intval($version[1])<<8) + intval($version[2]); $info[$field.'.readable'] = $value; break; } case "plugin.dependencies": case "rtorrent.external.warning": case "rtorrent.external.error": case "rtorrent.script.error": case "rtorrent.php.error": case "web.external.warning": case "web.external.error": case "php.extensions.warning": case "php.extensions.error": { $info[$field] = explode(',', $value); break; } // for compatibility case "author": case "description": { $info['plugin.'.$field] = $value; break; } case "remote": { $info['rtorrent.remote'] = $value; break; } case "need_rtorrent": { $info['rtorrent.need'] = intval($value); break; } case "version": case "runlevel": { $info['plugin.'.$field] = floatval($value); break; } } } } $perms = 0; if($permissions!==false) { if(!getFlag($permissions,$name,"enabled")) return(false); $flags = array( "canChangeToolbar" => 0x0001, "canChangeMenu" => 0x0002, "canChangeOptions" => 0x0004, "canChangeTabs" => 0x0008, "canChangeColumns" => 0x0010, "canChangeStatusBar" => 0x0020, "canChangeCategory" => 0x0040, "canBeShutdowned" => 0x0080, /* "canBeLaunched" => 0x0100, */ ); foreach($flags as $flagName=>$flagVal) if(!getFlag($permissions,$name,$flagName)) $perms|=$flagVal; if(!$info["plugin.may_be_shutdowned"]) $perms|=$flags["canBeShutdowned"]; } $info["perms"] = $perms; } return(array_key_exists("plugin.version",$info) ? $info : false); } function findRemoteEXE( $exe, $err, &$remoteRequests ) { $st = getSettingsPath().'/'.rand(); if(!array_key_exists($exe,$remoteRequests)) { $path=realpath(dirname('.')); global $pathToExternals; $add = ''; if(isset($pathToExternals[$exe]) && !empty($pathToExternals[$exe])) $add = " ".escapeshellarg($pathToExternals[$exe]); $req = new rXMLRPCRequest(new rXMLRPCCommand("execute", array( "sh", "-c", escapeshellarg(addslash($path)."test.sh")." ".$exe." ".escapeshellarg($st).$add))); $req->run(); $remoteRequests[$exe] = array( "path"=>$st, "err"=>array() ); } $remoteRequests[$exe]["err"][] = $err; } function testRemoteRequests($remoteRequests) { $ret = ""; foreach($remoteRequests as $exe=>$info) { $file = $info["path"].$exe.".found"; if(!is_file($file)) { foreach($info["err"] as $err) $ret.=$err; } else @unlink($file); } return($ret); } $jResult = "theWebUI.deltaTime = 0;\n"; $access = getConfFile('access.ini'); if(!$access) $access = "../conf/access.ini"; $permissions = parse_ini_file($access); $settingsFlags = array( "showDownloadsPage" => 0x0001, "showConnectionPage" => 0x0002, "showBittorentPage" => 0x0004, "showAdvancedPage" => 0x0008, "showPluginsTab" => 0x0010, "canChangeULRate" => 0x0020, "canChangeDLRate" => 0x0040, "canChangeTorrentProperties" => 0x0080, ); $perms = 0; foreach($settingsFlags as $flagName=>$flagVal) if(array_key_exists($flagName,$permissions) && $permissions[$flagName]) $perms|=$flagVal; $jResult .= "theWebUI.showFlags = ".$perms.";\n"; $jResult .= "theURLs.XMLRPCMountPoint = '".$XMLRPCMountPoint."';\n"; $jResult.="theWebUI.systemInfo = {};\ntheWebUI.systemInfo.php = { canHandleBigFiles : ".((PHP_INT_SIZE<=4) ? "false" : "true")." };\n"; if($handle = opendir('../plugins')) { ignore_user_abort(true); set_time_limit(0); makeDirectory(getTempDirectory()); if(!@file_exists($tempDirectory.'/.') || !is_readable($tempDirectory) || !is_writable($tempDirectory)) $jResult.="noty(theUILang.badTempPath+' (".$tempDirectory.")','error');"; if(!function_exists('preg_match_all')) { $jResult.="noty(theUILang.PCRENotFound,'error');"; $jResult.="theWebUI.systemInfo.rTorrent = { started: false, iVersion : 0, version : '?', libVersion : '?' };\n"; } else { $remoteRequests = array(); $theSettings = rTorrentSettings::get(true); if(!$theSettings->linkExist) { $jResult.="noty(theUILang.badLinkTorTorrent,'error');"; $jResult.="theWebUI.systemInfo.rTorrent = { started: false, iVersion : 0, version : '?', libVersion : '?', apiVersion : 0 };\n"; } else { if($theSettings->idNotFound) $jResult.="noty(theUILang.idNotFound,'error');"; $jResult.="theWebUI.systemInfo.rTorrent = { started: true, iVersion : ".$theSettings->iVersion.", version : '". $theSettings->version."', libVersion : '".$theSettings->libVersion."', apiVersion : ".$theSettings->apiVersion." };\n"; if($theSettings->mostOfMethodsRenamed) $jResult.="theWebUI.systemInfo.rTorrent.newMethodsSet = true;\n"; if($do_diagnostic) { $up = getUploadsPath(); $st = getSettingsPath(); @chmod($up,$profileMask); @chmod($st,$profileMask); @chmod('./test.sh',$profileMask & 0755); if(PHP_USE_GZIP && (findEXE('gzip')===false)) { @define('PHP_USE_GZIP', false); $jResult.="noty(theUILang.gzipNotFound,'error');"; } if(PHP_INT_SIZE<=4) { if(findEXE('stat')===false) $jResult.="noty(theUILang.statNotFoundW,'error');"; findRemoteEXE('stat',"noty(theUILang.statNotFound,'error');",$remoteRequests); } if(!@file_exists($up.'/.') || !is_readable($up) || !is_writable($up)) $jResult.="noty(theUILang.badUploadsPath+' (".$up.")','error');"; if(!@file_exists($st.'/.') || !is_readable($st) || !is_writable($st)) $jResult.="noty(theUILang.badSettingsPath+' (".$st.")','error');"; if(isLocalMode() && !$theSettings->idNotFound) { if($theSettings->uid<0) $jResult.="noty(theUILang.cantObtainUser,'error');"; else { if(!isUserHavePermission($theSettings->uid,$theSettings->gid,$tempDirectory,0x0007)) $jResult.="noty(theUILang.badTempPath2+' (".$tempDirectory.")','error');"; if(!isUserHavePermission($theSettings->uid,$theSettings->gid,$up,0x0007)) $jResult.="noty(theUILang.badUploadsPath2+' (".$up.")','error');"; if(!isUserHavePermission($theSettings->uid,$theSettings->gid,$st,0x0007)) $jResult.="noty(theUILang.badSettingsPath2+' (".$st.")','error');"; if(!isUserHavePermission($theSettings->uid,$theSettings->gid,'./test.sh',0x0005)) $jResult.="noty(theUILang.badTestPath+' (".realpath('./test.sh').")','error');"; } } if($theSettings->badXMLRPCVersion) $jResult.="noty(theUILang.badXMLRPCVersion,'error');"; } } $plg = getConfFile('plugins.ini'); if(!$plg) $plg = "../conf/plugins.ini"; $permissions = parse_ini_file($plg,true); $init = array(); $names = array(); $disabled = array(); $phpVersion = phpversion(); if( ($pos=strpos($phpVersion, '-'))!==false ) $phpVersion = substr($phpVersion,0,$pos); $phpIVersion = explode('.',$phpVersion); $phpIVersion = (intval($phpIVersion[0])<<16) + (intval($phpIVersion[1])<<8) + intval($phpIVersion[2]); $phpRequired = false; $userPermissions = array( "__hash__"=>"plugins.dat" ); $cache = new rCache(); $cache->get($userPermissions); $cantBeShutdowned = 0x0080; $canBeLaunched = 0x0100; $disabledByUser = 0x8000; $loadedExtensions = array_map("strtolower",get_loaded_extensions()); while(false !== ($file = readdir($handle))) { if($file != "." && $file != ".." && is_dir('../plugins/'.$file)) { if(!array_key_exists($file,$userPermissions)) $userPermissions[$file] = true; $info = getPluginInfo( $file, $permissions ); if($info) { if( $info["plugin.may_be_launched"] && getFlag($permissions,$file,"enabled")=="user-defined") { $info["perms"] |= $canBeLaunched; if(!$userPermissions[$file]) { $info["perms"] |= $disabledByUser; $disabled[$file] = $info; $info = false; } } else $info["perms"] |= $cantBeShutdowned; } if($info!==false) { if(!$theSettings->linkExist && $info["rtorrent.need"]) { $disabled[$file] = $info; continue; } if($info['php.version']>$phpIVersion) { $jResult.="noty('".$file.": '+theUILang.badPHPVersion+' '+'".$info['php.version.readable']."'+'.','error');"; $disabled[$file] = $info; continue; } $extError = false; foreach( $info['php.extensions.error'] as $extension ) if(!in_array( $extension, $loadedExtensions )) { $jResult.="noty('".$file.": '+theUILang.phpExtensionNotFoundError+' ('+'".$extension."'+').','error');"; $extError = true; } if($extError) { $disabled[$file] = $info; continue; } if(count($info['web.external.error']) || count($info['web.external.warning']) || count($info['rtorrent.external.error']) || count($info['rtorrent.external.warning'])) eval( getPluginConf( $file ) ); foreach( $info['web.external.error'] as $external ) { if(findEXE($external)==false) { $jResult.="noty('".$file.": '+theUILang.webExternalNotFoundError+' ('+'".$external."'+').','error');"; $extError = true; } else if($external=='php') $phpRequired = true; } if($extError) { $disabled[$file] = $info; continue; } if($theSettings->linkExist) { if($info['rtorrent.version']>$theSettings->iVersion) { $jResult.="noty('".$file.": '+theUILang.badrTorrentVersion+' '+'".$info['rtorrent.version.readable']."'+'.','error');"; $disabled[$file] = $info; continue; } foreach( $info['rtorrent.external.error'] as $external ) { findRemoteEXE($external,"noty('".$file.": '+theUILang.rTorrentExternalNotFoundError+' ('+'".$external."'+').','error'); thePlugins.get('".$file."').disable();",$remoteRequests); if($external=='php') $phpRequired = true; } foreach( $info['rtorrent.script.error'] as $external ) { $fname = $rootPath.'/plugins/'.$file.'/'.$external; @chmod($fname,$profileMask & 0755); if(!isUserHavePermission($theSettings->uid,$theSettings->gid,$fname,0x0005)) { $jResult.="noty('".$file.": '+theUILang.rTorrentBadScriptPath+' ('+'".$fname."'+').','error');"; $extError = true; } } if($extError) { $disabled[$file] = $info; continue; } foreach( $info['rtorrent.php.error'] as $external ) { $fname = $rootPath.'/plugins/'.$file.'/'.$external; @chmod($fname,$profileMask & 0644); if(!isUserHavePermission($theSettings->uid,$theSettings->gid,$fname,0x0004)) { $jResult.="noty('".$file.": '+theUILang.rTorrentBadPHPScriptPath+' ('+'".$fname."'+').','error');"; $extError = true; } } if($extError) { $disabled[$file] = $info; continue; } if(!isLocalMode()) { if($info["rtorrent.remote"]=="error") { $jResult.="noty('".$file.": '+theUILang.errMustBeInSomeHost,'error');"; $disabled[$file] = $info; continue; } if($do_diagnostic && ($info["rtorrent.remote"]=="warning")) $jResult.="noty('".$file.": '+theUILang.warnMustBeInSomeHost,'error');"; } } if($do_diagnostic) { if($theSettings->linkExist) foreach( $info['rtorrent.external.warning'] as $external ) findRemoteEXE($external,"noty('".$file.": '+theUILang.rTorrentExternalNotFoundWarning+' ('+'".$external."'+').','error');",$remoteRequests); foreach( $info['web.external.warning'] as $external ) if(findEXE($external)==false) $jResult.="noty('".$file.": '+theUILang.webExternalNotFoundWarning+' ('+'".$external."'+').','error');"; foreach( $info['php.extensions.warning'] as $extension ) if(!in_array( $extension, $loadedExtensions )) $jResult.="noty('".$file.": '+theUILang.phpExtensionNotFoundWarning+' ('+'".$extension."'+').','error');"; } $js = "../plugins/".$file."/init.js"; if(!is_readable($js)) $js = NULL; $php = "../plugins/".$file."/init.php"; if(!is_readable($php)) $php = NULL; $init[] = array( "js" => $js, "php" => $php, "info" => $info, "name" => $file ); $names[] = $file; } } } if($phpRequired) { $val = strtoupper(ini_get("register_argc_argv")); if( $val!=='' && $val!='ON' && $val!='1' && $val!='TRUE' ) $jResult.="noty(theUILang.phpParameterUnavailable,'error');"; } usort($init,"pluginsSort"); foreach($init as $plugin) { $jEnd = ''; $pInfo = $plugin["info"]; $deps = array_diff( $pInfo["plugin.dependencies"], $names ); if(count($deps)) { $jResult.="noty('".$plugin["name"].": '+theUILang.dependenceError+' ".implode(",",$deps)."','error');"; $disabled[$plugin["name"]] = $pInfo; continue; } $jResult.="(function () { var plugin = new rPlugin( '".$plugin["name"]."',".$pInfo["plugin.version"]. ",'".$pInfo["plugin.author"]."','".$pInfo["plugin.description"]."',".$pInfo["perms"].",'".$pInfo["plugin.help"]."' );\n"; if($plugin["php"]) require_once( $plugin["php"] ); else $theSettings->registerPlugin($plugin["name"],$pInfo["perms"]); if($plugin["js"]) { $js = file_get_contents($plugin["js"]); if($theSettings->isPluginRegistered($plugin["name"])) $jResult.=$js; else { if(strpos($js,"plugin.loadLang()")!==false) $jResult.="plugin.loadLang();"; } $jResult.="\n"; } $jResult.=$jEnd; $jResult.="\n})();"; } foreach($disabled as $name=>$pInfo) { $jResult.="(function () { var plugin = new rPlugin( '".$name."',".$pInfo["plugin.version"]. ",'".$pInfo["plugin.author"]."','".$pInfo["plugin.description"]."',".$pInfo["perms"].",'".$pInfo["plugin.help"]."' );\n"; $jResult.="plugin.disable(); "; if($pInfo["perms"] & $disabledByUser) $jResult.="plugin.unlaunch(); "; $jResult.="\n})();"; } $jResult.=testRemoteRequests($remoteRequests); $theSettings->store(); } closedir($handle); } cachedEcho($jResult,"application/javascript",true);
    [25.06.2014 18:37:23] Bad response from server: (200 [parsererror,getuisettings]) <?php require_once( 'util.php' ); $s = '{}'; $fname = getSettingsPath()."/uisettings.json"; $fo = fopen($fname, 'r'); if($fo!==false) { if(flock($fo, LOCK_SH)) { $s = @file_get_contents($fname); if($s==false) $s = '{}'; flock($fo, LOCK_UN); } fclose($fo); } cachedEcho($s,"application/json",true);
    For that log I believe I've a problem with permission, or rutorrent plugins.
    Here are my configuration files
    /etc/webapps/rutorrent/conf/config.php
    <?php
    // configuration parameters
    // for snoopy client
    @define('HTTP_USER_AGENT', 'Mozilla/5.0 (Windows NT 6.0; WOW64; rv:12.0) Gecko/20100101 Firefox/12.0', true);
    @define('HTTP_TIME_OUT', 30, true); // in seconds
    @define('HTTP_USE_GZIP', true, true);
    $httpIP = null; // IP string. Or null for any.
    @define('RPC_TIME_OUT', 5, true); // in seconds
    @define('LOG_RPC_CALLS', false, true);
    @define('LOG_RPC_FAULTS', true, true);
    // for php
    @define('PHP_USE_GZIP', false, true);
    @define('PHP_GZIP_LEVEL', 2, true);
    $schedule_rand = 10; // rand for schedulers start, +0..X seconds
    $do_diagnostic = true;
    $log_file = '/tmp/errors.log'; // path to log file (comment or leave blank to disable logging)
    $saveUploadedTorrents = true; // Save uploaded torrents to profile/torrents directory or not
    $overwriteUploadedTorrents = false; // Overwrite existing uploaded torrents in profile/torrents directory or make unique name
    $topDirectory = '/'; // Upper available directory. Absolute path with trail slash.
    $forbidUserSettings = false;
    $scgi_port = 5000;
    $scgi_host = "127.0.0.1";
    // For web->rtorrent link through unix domain socket
    // (scgi_local in rtorrent conf file), change variables
    // above to something like this:
    // $scgi_port = 0;
    // $scgi_host = "unix:///tmp/rpc.socket";
    $XMLRPCMountPoint = "/RPC2"; // DO NOT DELETE THIS LINE!!! DO NOT COMMENT THIS LINE!!!
    $pathToExternals = array(
    "php" => '/usr/bin/php', // Something like /usr/bin/php. If empty, will be found in PATH.
    "curl" => '/usr/bin/curl', // Something like /usr/bin/curl. If empty, will be found in PATH.
    "gzip" => '/usr/bin/gzip', // Something like /usr/bin/gzip. If empty, will be found in PATH.
    "id" => '/usr/bin/id', // Something like /usr/bin/id. If empty, will be found in PATH.
    "stat" => '/usr/bin/stat', // Something like /usr/bin/stat. If empty, will be found in PATH.
    $localhosts = array( // list of local interfaces
    "127.0.0.1",
    "localhost",
    $profilePath = '../share'; // Path to user profiles
    $profileMask = 0777; // Mask for files and directory creation in user profiles.
    // Both Webserver and rtorrent users must have read-write access to it.
    // For example, if Webserver and rtorrent users are in the same group then the value may be 0770.
    $tempDirectory = null; // Temp directory. Absolute path with trail slash. If null, then autodetect will be used.
    ~/.rtorrent.rc
    scgi_port = localhost:5000
    directory = /home/milo/Downloads
    session = /home/milo/.rutorrent/.session
    schedule = watch_directory,5,5,load_start=/home/milo/Downloads/*.torrent
    schedule = low_diskspace,5,60,close_low_diskspace=100M
    port_range = 49152-50000
    check_hash = no
    encryption = allow_incoming,try_outgoing,enable_retry
    dht = auto
    dht_port = 6881
    peer_exchange = yes
    /etc/php/php.ini
    [PHP]
    ; About php.ini ;
    ; PHP's initialization file, generally called php.ini, is responsible for
    ; configuring many of the aspects of PHP's behavior.
    ; PHP attempts to find and load this configuration from a number of locations.
    ; The following is a summary of its search order:
    ; 1. SAPI module specific location.
    ; 2. The PHPRC environment variable. (As of PHP 5.2.0)
    ; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0)
    ; 4. Current working directory (except CLI)
    ; 5. The web server's directory (for SAPI modules), or directory of PHP
    ; (otherwise in Windows)
    ; 6. The directory from the --with-config-file-path compile time option, or the
    ; Windows directory (C:\windows or C:\winnt)
    ; See the PHP docs for more specific information.
    ; http://php.net/configuration.file
    ; 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 following the section heading [PATH=/www/mysite] only
    ; apply to PHP files in the /www/mysite directory. Directives
    ; following the section heading [HOST=www.example.com] only apply to
    ; PHP files served from www.example.com. Directives set in these
    ; special sections cannot be overridden by user-defined INI files or
    ; at runtime. Currently, [PATH=] and [HOST=] sections only work under
    ; CGI/FastCGI.
    ; http://php.net/ini.sections
    ; Directives are specified using the following syntax:
    ; directive = value
    ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
    ; Directives are variables used to configure PHP or PHP extensions.
    ; There is no name validation. If PHP can't find an expected
    ; directive because it is not set or is mistyped, a default value will be used.
    ; 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), a quoted string ("bar"), or a reference to a
    ; previously set variable or directive (e.g. ${foo})
    ; Expressions in the INI file are limited to bitwise operators and parentheses:
    ; | bitwise OR
    ; ^ bitwise XOR
    ; & 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.
    ; About this file ;
    ; PHP comes packaged with two INI files. One that is recommended to be used
    ; in production environments and one that is recommended to be used in
    ; development environments.
    ; php.ini-production contains settings which hold security, performance and
    ; best practices at its core. But please be aware, these settings may break
    ; compatibility with older or less security conscience applications. We
    ; recommending using the production ini in production and testing environments.
    ; php.ini-development is very similar to its production variant, except it's
    ; much more verbose when it comes to errors. We recommending using the
    ; development version only in development environments as errors shown to
    ; application users can inadvertently leak otherwise secure information.
    ; This is php.ini-production INI file.
    ; Quick Reference ;
    ; The following are all the settings which are different in either the production
    ; or development versions of the INIs with respect to PHP's default behavior.
    ; Please see the actual settings later in the document for more details as to why
    ; we recommend these changes in PHP's behavior.
    ; display_errors
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; display_startup_errors
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: Off
    ; error_reporting
    ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
    ; Development Value: E_ALL
    ; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
    ; html_errors
    ; Default Value: On
    ; Development Value: On
    ; Production value: On
    ; log_errors
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: On
    ; max_input_time
    ; Default Value: -1 (Unlimited)
    ; Development Value: 60 (60 seconds)
    ; Production Value: 60 (60 seconds)
    ; output_buffering
    ; Default Value: Off
    ; Development Value: 4096
    ; Production Value: 4096
    ; register_argc_argv
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; request_order
    ; Default Value: None
    ; Development Value: "GP"
    ; Production Value: "GP"
    ; session.gc_divisor
    ; Default Value: 100
    ; Development Value: 1000
    ; Production Value: 1000
    ; session.hash_bits_per_character
    ; Default Value: 4
    ; Development Value: 5
    ; Production Value: 5
    ; short_open_tag
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; track_errors
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: Off
    ; url_rewriter.tags
    ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
    ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
    ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
    ; variables_order
    ; Default Value: "EGPCS"
    ; Development Value: "GPCS"
    ; Production Value: "GPCS"
    ; php.ini Options ;
    ; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
    ;user_ini.filename = ".user.ini"
    ; To disable this feature set this option to empty value
    ;user_ini.filename =
    ; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
    ;user_ini.cache_ttl = 300
    ; Language Options ;
    ; Enable the PHP scripting language engine under Apache.
    ; http://php.net/engine
    engine = On
    ; This directive determines whether or not PHP will recognize code between
    ; <? and ?> tags as PHP source which should be processed as such. It is
    ; generally recommended that <?php and ?> should be used and that this feature
    ; should be disabled, as enabling it may result in issues when generating XML
    ; documents, however this remains supported for backward compatibility reasons.
    ; Note that this directive does not control the <?= shorthand tag, which can be
    ; used regardless of this directive.
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; http://php.net/short-open-tag
    short_open_tag = Off
    ; Allow ASP-style <% %> tags.
    ; http://php.net/asp-tags
    asp_tags = Off
    ; The number of significant digits displayed in floating point numbers.
    ; http://php.net/precision
    precision = 14
    ; Output buffering is a mechanism for controlling how much output data
    ; (excluding headers and cookies) PHP should keep internally before pushing that
    ; data to the client. If your application's output exceeds this setting, PHP
    ; will send that data in chunks of roughly the size you specify.
    ; Turning on this setting and managing its maximum buffer size can yield some
    ; interesting side-effects depending on your application and web server.
    ; You may be able to send headers and cookies after you've already sent output
    ; through print or echo. You also may see performance benefits if your server is
    ; emitting less packets due to buffered output versus PHP streaming the output
    ; as it gets it. On production servers, 4096 bytes is a good setting for performance
    ; reasons.
    ; Note: Output buffering can also be controlled via Output Buffering Control
    ; functions.
    ; Possible Values:
    ; On = Enabled and buffer is unlimited. (Use with caution)
    ; Off = Disabled
    ; Integer = Enables the buffer and sets its maximum size in bytes.
    ; Note: This directive is hardcoded to Off for the CLI SAPI
    ; Default Value: Off
    ; Development Value: 4096
    ; Production Value: 4096
    ; http://php.net/output-buffering
    output_buffering = 4096
    ; 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: People who wrote portable scripts should not depend on this ini
    ; directive. Instead, explicitly set the output handler using ob_start().
    ; Using this ini directive may cause problems unless you know what script
    ; is doing.
    ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
    ; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
    ; Note: output_handler must be empty if this is set 'On' !!!!
    ; Instead you must use zlib.output_handler.
    ; http://php.net/output-handler
    ;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)
    ; Note: 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: You need to use zlib.output_handler instead of the standard
    ; output_handler, or otherwise the output will be corrupted.
    ; http://php.net/zlib.output-compression
    zlib.output_compression = Off
    ; http://php.net/zlib.output-compression-level
    ;zlib.output_compression_level = -1
    ; 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.
    ; http://php.net/zlib.output-handler
    ;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() 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.
    ; http://php.net/implicit-flush
    ; Note: This directive is hardcoded to On for the CLI SAPI
    implicit_flush = Off
    ; The unserialize callback function will be called (with the undefined class'
    ; name as parameter), if the unserializer finds an undefined class
    ; which should be instantiated. 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 = 17
    ; 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.
    ; http://php.net/open-basedir
    open_basedir = /srv/http/:/home/:/tmp/:/usr/share/pear/:/usr/share/webapps/:/etc/webapps/rutorrent/conf/:/usr/share/webapps/rutorrent/php/:/usr/share/webapps/rutorrent/
    ; 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.
    ; http://php.net/disable-functions
    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.
    ; http://php.net/disable-classes
    disable_classes =
    ; Colors for Syntax Highlighting mode. Anything that's acceptable in
    ; <span style="color: ???????"> would work.
    ; http://php.net/syntax-highlighting
    ;highlight.string = #DD0000
    ;highlight.comment = #FF9900
    ;highlight.keyword = #007700
    ;highlight.default = #0000BB
    ;highlight.html = #000000
    ; If enabled, the request will be allowed to complete even if the user aborts
    ; the request. Consider enabling it if executing long requests, which may end up
    ; being interrupted by the user or a browser timing out. PHP's default behavior
    ; is to disable this feature.
    ; http://php.net/ignore-user-abort
    ;ignore_user_abort = On
    ; Determines the size of the realpath cache to be used by PHP. This value should
    ; be increased on systems where PHP opens many files to reflect the quantity of
    ; the file operations performed.
    ; http://php.net/realpath-cache-size
    ;realpath_cache_size = 16k
    ; Duration of time, in seconds for which to cache realpath information for a given
    ; file or directory. For systems with rarely changing files, consider increasing this
    ; value.
    ; http://php.net/realpath-cache-ttl
    ;realpath_cache_ttl = 120
    ; Enables or disables the circular reference collector.
    ; http://php.net/zend.enable-gc
    zend.enable_gc = On
    ; If enabled, scripts may be written in encodings that are incompatible with
    ; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such
    ; encodings. To use this feature, mbstring extension must be enabled.
    ; Default: Off
    ;zend.multibyte = Off
    ; Allows to set the default encoding for the scripts. This value will be used
    ; unless "declare(encoding=...)" directive appears at the top of the script.
    ; Only affects if zend.multibyte is set.
    ; Default: ""
    ;zend.script_encoding =
    ; Miscellaneous ;
    ; 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.
    ; http://php.net/expose-php
    expose_php = On
    ; Resource Limits ;
    ; Maximum execution time of each script, in seconds
    ; http://php.net/max-execution-time
    ; Note: This directive is hardcoded to 0 for the CLI SAPI
    max_execution_time = 30
    ; Maximum amount of time each script may spend parsing request data. It's a good
    ; idea to limit this time on productions servers in order to eliminate unexpectedly
    ; long running scripts.
    ; Note: This directive is hardcoded to -1 for the CLI SAPI
    ; Default Value: -1 (Unlimited)
    ; Development Value: 60 (60 seconds)
    ; Production Value: 60 (60 seconds)
    ; http://php.net/max-input-time
    max_input_time = 60
    ; Maximum input variable nesting level
    ; http://php.net/max-input-nesting-level
    ;max_input_nesting_level = 64
    ; How many GET/POST/COOKIE input variables may be accepted
    ; max_input_vars = 1000
    ; Maximum amount of memory a script may consume (128MB)
    ; http://php.net/memory-limit
    memory_limit = 128M
    ; Error handling and logging ;
    ; This directive informs PHP of which errors, warnings and notices you would like
    ; it to take action for. The recommended way of setting values for this
    ; directive is through the use of the error level constants and bitwise
    ; operators. The error level constants are below here for convenience as well as
    ; some common settings and their meanings.
    ; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
    ; those related to E_NOTICE and E_STRICT, which together cover best practices and
    ; recommended coding standards in PHP. For performance reasons, this is the
    ; recommend error reporting setting. Your production server shouldn't be wasting
    ; resources complaining about best practices and coding standards. That's what
    ; development servers and development settings are for.
    ; Note: The php.ini-development file has this setting as E_ALL. This
    ; means it pretty much reports everything which is exactly what you want during
    ; development and early testing.
    ; Error Level Constants:
    ; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0)
    ; E_ERROR - fatal run-time errors
    ; E_RECOVERABLE_ERROR - almost fatal run-time errors
    ; E_WARNING - run-time warnings (non-fatal errors)
    ; E_PARSE - compile-time parse errors
    ; E_NOTICE - run-time notices (these are warnings which often result
    ; from a bug in your code, but it's possible that it was
    ; intentional (e.g., using an uninitialized variable and
    ; relying on the fact it's automatically initialized to an
    ; empty string)
    ; E_STRICT - run-time notices, enable to have PHP suggest changes
    ; to your code which will ensure the best interoperability
    ; and forward compatibility of your code
    ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
    ; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
    ; initial startup
    ; E_COMPILE_ERROR - fatal compile-time errors
    ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
    ; E_USER_ERROR - user-generated error message
    ; E_USER_WARNING - user-generated warning message
    ; E_USER_NOTICE - user-generated notice message
    ; E_DEPRECATED - warn about code that will not work in future versions
    ; of PHP
    ; E_USER_DEPRECATED - user-generated deprecation warnings
    ; Common Values:
    ; E_ALL (Show all errors, warnings and notices including coding standards.)
    ; E_ALL & ~E_NOTICE (Show all errors, except for notices)
    ; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)
    ; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
    ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
    ; Development Value: E_ALL
    ; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
    ; http://php.net/error-reporting
    error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
    ; This directive controls whether or not and where PHP will output errors,
    ; notices and warnings too. Error output is very useful during development, but
    ; it could be very dangerous in production environments. Depending on the code
    ; which is triggering the error, sensitive information could potentially leak
    ; out of your application such as database usernames and passwords or worse.
    ; It's recommended that errors be logged on production servers rather than
    ; having the errors sent to STDOUT.
    ; Possible Values:
    ; Off = Do not display any errors
    ; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
    ; On or stdout = Display errors to STDOUT
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/display-errors
    display_errors = Off
    ; The display of errors which occur during PHP's startup sequence are handled
    ; separately from display_errors. PHP's default behavior is to suppress those
    ; errors from clients. Turning the display of startup errors on can be useful in
    ; debugging configuration problems. But, it's strongly recommended that you
    ; leave this setting off on production servers.
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/display-startup-errors
    display_startup_errors = Off
    ; Besides displaying errors, PHP can also log errors to locations such as a
    ; server-specific log, STDERR, or a location specified by the error_log
    ; directive found below. While errors should not be displayed on productions
    ; servers they should still be monitored and logging is a great way to do that.
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: On
    ; http://php.net/log-errors
    log_errors = On
    ; Set maximum length of log_errors. In error_log information about the source is
    ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
    ; http://php.net/log-errors-max-len
    log_errors_max_len = 1024
    ; Do not log repeated messages. Repeated errors must occur in same file on same
    ; line unless ignore_repeated_source is set true.
    ; http://php.net/ignore-repeated-errors
    ignore_repeated_errors = Off
    ; Ignore source of message when ignoring repeated messages. When this setting
    ; is On you will not log errors with repeated messages from different files or
    ; source lines.
    ; http://php.net/ignore-repeated-source
    ignore_repeated_source = Off
    ; If this parameter is set to Off, then memory leaks will not be shown (on
    ; stdout or in the log). This has only effect in a debug compile, and if
    ; error reporting includes E_WARNING in the allowed list
    ; http://php.net/report-memleaks
    report_memleaks = On
    ; This setting is on by default.
    ;report_zend_debug = 0
    ; Store the last error/warning message in $php_errormsg (boolean). Setting this value
    ; to On can assist in debugging and is appropriate for development servers. It should
    ; however be disabled on production servers.
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/track-errors
    track_errors = Off
    ; Turn off normal error reporting and emit XML-RPC error XML
    ; http://php.net/xmlrpc-errors
    ;xmlrpc_errors = 0
    ; An XML-RPC faultCode
    ;xmlrpc_error_number = 0
    ; When PHP displays or logs an error, it has the capability of formatting the
    ; error message as HTML for easier reading. This directive controls whether
    ; the error message is formatted as HTML or not.
    ; Note: This directive is hardcoded to Off for the CLI SAPI
    ; Default Value: On
    ; Development Value: On
    ; Production value: On
    ; http://php.net/html-errors
    html_errors = On
    ; If html_errors is set to On *and* docref_root is not empty, then 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://php.net/docs
    ; 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. PHP's default behavior is to leave these settings empty, in which
    ; case no links to documentation are generated.
    ; Note: Never use this feature for production boxes.
    ; http://php.net/docref-root
    ; Examples
    ;docref_root = "/phpmanual/"
    ; http://php.net/docref-ext
    ;docref_ext = .html
    ; String to output before an error message. PHP's default behavior is to leave
    ; this setting blank.
    ; http://php.net/error-prepend-string
    ; Example:
    ;error_prepend_string = "<span style='color: #ff0000'>"
    ; String to output after an error message. PHP's default behavior is to leave
    ; this setting blank.
    ; http://php.net/error-append-string
    ; Example:
    ;error_append_string = "</span>"
    ; Log errors to specified file. PHP's default behavior is to leave this value
    ; empty.
    ; http://php.net/error-log
    ; Example:
    ;error_log = php_errors.log
    ; Log errors to syslog (Event Log on Windows).
    ;error_log = syslog
    ;windows.show_crt_warning
    ; Default value: 0
    ; Development value: 0
    ; Production value: 0
    ; Data Handling ;
    ; The separator used in PHP generated URLs to separate arguments.
    ; PHP's default setting is "&".
    ; http://php.net/arg-separator.output
    ; Example:
    ;arg_separator.output = "&amp;"
    ; List of separator(s) used by PHP to parse input URLs into variables.
    ; PHP's default setting is "&".
    ; NOTE: Every character in this directive is considered as separator!
    ; http://php.net/arg-separator.input
    ; Example:
    ;arg_separator.input = ";&"
    ; This directive determines which super global arrays are registered when PHP
    ; starts up. G,P,C,E & S are abbreviations for the following respective super
    ; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty
    ; paid for the registration of these arrays and because ENV is not as commonly
    ; used as the others, ENV is not recommended on productions servers. You
    ; can still get access to the environment variables through getenv() should you
    ; need to.
    ; Default Value: "EGPCS"
    ; Development Value: "GPCS"
    ; Production Value: "GPCS";
    ; http://php.net/variables-order
    variables_order = "GPCS"
    ; This directive determines which super global data (G,P,C,E & S) should
    ; be registered into the super global array REQUEST. If so, it also determines
    ; the order in which that data is registered. The values for this directive are
    ; specified in the same manner as the variables_order directive, EXCEPT one.
    ; Leaving this value empty will cause PHP to use the value set in the
    ; variables_order directive. It does not mean it will leave the super globals
    ; array REQUEST empty.
    ; Default Value: None
    ; Development Value: "GP"
    ; Production Value: "GP"
    ; http://php.net/request-order
    request_order = "GP"
    ; This directive determines whether PHP registers $argv & $argc each time it
    ; runs. $argv contains an array of all the arguments passed to PHP when a script
    ; is invoked. $argc contains an integer representing the number of arguments
    ; that were passed when the script was invoked. These arrays are extremely
    ; useful when running scripts from the command line. When this directive is
    ; enabled, registering these variables consumes CPU cycles and memory each time
    ; a script is executed. For performance reasons, this feature should be disabled
    ; on production servers.
    ; Note: This directive is hardcoded to On for the CLI SAPI
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; http://php.net/register-argc-argv
    register_argc_argv = Off
    ; When enabled, the ENV, REQUEST and SERVER variables are created when they're
    ; first used (Just In Time) instead of when the script starts. If these
    ; variables are not used within a script, having this directive on will result
    ; in a performance gain. The PHP directive register_argc_argv must be disabled
    ; for this directive to have any affect.
    ; http://php.net/auto-globals-jit
    auto_globals_jit = On
    ; Whether PHP will read the POST data.
    ; This option is enabled by default.
    ; Most likely, you won't want to disable this option globally. It causes $_POST
    ; and $_FILES to always be empty; the only way you will be able to read the
    ; POST data will be through the php://input stream wrapper. This can be useful
    ; to proxy requests or to process the POST data in a memory efficient fashion.
    ; http://php.net/enable-post-data-reading
    ;enable_post_data_reading = Off
    ; Maximum size of POST data that PHP will accept.
    ; Its value may be 0 to disable the limit. It is ignored if POST data reading
    ; is disabled through enable_post_data_reading.
    ; http://php.net/post-max-size
    post_max_size = 8M
    ; Automatically add files before PHP document.
    ; http://php.net/auto-prepend-file
    auto_prepend_file =
    ; Automatically add files after PHP document.
    ; http://php.net/auto-append-file
    auto_append_file =
    ; By default, PHP will output a character encoding using
    ; the Content-type: header. To disable sending of the charset, simply
    ; set it to be empty.
    ; PHP's built-in default is text/html
    ; http://php.net/default-mimetype
    default_mimetype = "text/html"
    ; PHP's default character set is set to empty.
    ; http://php.net/default-charset
    ;default_charset = "UTF-8"
    ; Always populate the $HTTP_RAW_POST_DATA variable. PHP's default behavior is
    ; to disable this feature. If post reading is disabled through
    ; enable_post_data_reading, $HTTP_RAW_POST_DATA is *NOT* populated.
    ; http://php.net/always-populate-raw-post-data
    ;always_populate_raw_post_data = On
    ; Paths and Directories ;
    ; UNIX: "/path1:/path2"
    include_path = ".:/usr/share/pear"
    ; Windows: "\path1;\path2"
    ;include_path = ".;c:\php\includes"
    ; PHP's default setting for include_path is ".;/path/to/php/pear"
    ; http://php.net/include-path
    ; 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 (other than IIS)
    ; see documentation for security issues. The alternate is to use the
    ; cgi.force_redirect configuration below
    ; http://php.net/doc-root
    doc_root =
    ; The directory under which PHP opens the script using /~username used only
    ; if nonempty.
    ; http://php.net/user-dir
    user_dir =
    ; Directory in which the loadable extensions (modules) reside.
    ; http://php.net/extension-dir
    extension_dir = "/usr/lib/php/modules/"
    ; On windows:
    ; extension_dir = "ext"
    ; Directory where the temporary files should be placed.
    ; Defaults to the system default (see sys_get_temp_dir)
    ; sys_temp_dir = "/tmp"
    ; Whether or not to enable the dl() function. The dl() function does NOT work
    ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
    ; disabled on them.
    ; http://php.net/enable-dl
    enable_dl = Off
    ; 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.**
    ; http://php.net/cgi.force-redirect
    ;cgi.force_redirect = 1
    ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
    ; every request. PHP's default behavior is to disable this feature.
    ;cgi.nph = 1
    ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
    ; (iPlanet) 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.
    ; http://php.net/cgi.redirect-status-env
    ;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_INFO, see the cgi specs. Setting
    ; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
    ; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
    ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
    ; http://php.net/cgi.fix-pathinfo
    ;cgi.fix_pathinfo=1
    ; FastCGI under IIS (on WINNT based OS) 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 (03/17/2002)
    ; Set to 1 if running under IIS. Default is zero.
    ; http://php.net/fastcgi.impersonate
    ;fastcgi.impersonate = 1
    ; Disable logging through FastCGI connection. PHP's default behavior is to enable
    ; this feature.
    ;fastcgi.logging = 0
    ; 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: header that
    ; is supported by Apache. When this option is set to 1 PHP will send
    ; RFC2616 compliant header.
    ; Default is zero.
    ; http://php.net/cgi.rfc2616-headers
    ;cgi.rfc2616_headers = 0
    ; File Uploads ;
    ; Whether to allow HTTP file uploads.
    ; http://php.net/file-uploads
    file_uploads = On
    ; Temporary directory for HTTP uploaded files (will use system default if not
    ; specified).
    ; http://php.net/upload-tmp-dir
    ;upload_tmp_dir =
    ; Maximum allowed size for uploaded files.
    ; http://php.net/upload-max-filesize
    upload_max_filesize = 2M
    ; Maximum number of files that can be uploaded via a single request
    max_file_uploads = 20
    ; Fopen wrappers ;
    ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
    ; http://php.net/allow-url-fopen
    allow_url_fopen = On
    ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
    ; http://php.net/allow-url-include
    allow_url_include = Off
    ; Define the anonymous ftp password (your email address). PHP's default setting
    ; for this is empty.
    ; http://php.net/from
    ;from="[email protected]"
    ; Define the User-Agent string. PHP's default setting for this is empty.
    ; http://php.net/user-agent
    ;user_agent="PHP"
    ; Default timeout for socket based streams (seconds)
    ; http://php.net/default-socket-timeout
    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 systems, setting this flag will cause PHP to
    ; automatically detect the EOL character in those files so that
    ; fgets() and file() will work regardless of the source of the file.
    ; http://php.net/auto-detect-line-endings
    ;auto_detect_line_endings = Off
    ; Dynamic Extensions ;
    ; If you wish to have an extension loaded automatically, use the following
    ; syntax:
    ; extension=modulename.extension
    ; For example, on Windows:
    ; extension=msql.dll
    ; ... or under UNIX:
    ; extension=msql.so
    ; ... or with a path:
    ; extension=/path/to/extension/msql.so
    ; If you only provide the name of the extension, PHP will look for it in its
    ; default extension directory.
    ;extension=bcmath.so
    ;extension=bz2.so
    ;extension=calendar.so
    extension=curl.so
    ;extension=dba.so
    ;extension=enchant.so
    ;extension=exif.so
    ;extension=ftp.so
    ;extension=gd.so
    extension=gettext.so
    ;extension=gmp.so
    ;extension=iconv.so
    ;extension=imap.so
    ;extension=intl.so
    ;extension=ldap.so
    ;extension=mcrypt.so
    ;extension=mssql.so
    ;extension=mysqli.so
    ;extension=mysql.so
    ;extension=odbc.so
    ;zend_extension=opcache.so
    ;extension=openssl.so
    ;extension=pdo_mysql.so
    ;extension=pdo_odbc.so
    ;extension=pdo_pgsql.so
    ;extension=pdo_sqlite.so
    ;extension=pgsql.so
    ;extension=phar.so
    ;extension=posix.so
    ;extension=pspell.so
    ;extension=shmop.so
    ;extension=snmp.so
    ;extension=soap.so
    ;extension=sockets.so
    ;extension=sqlite3.so
    ;extension=sysvmsg.so
    ;extension=sysvsem.so
    ;extension=sysvshm.so
    ;extension=tidy.so
    ;extension=xmlrpc.so
    ;extension=xsl.so
    ;extension=zip.so
    ; Module Settings ;
    [CLI Server]
    ; Whether the CLI web server uses ANSI color coding in its terminal output.
    cli_server.color = On
    [Date]
    ; Defines the default timezone used by the date functions
    ; http://php.net/date.timezone
    ;date.timezone =
    ; http://php.net/date.default-latitude
    ;date.default_latitude = 31.7667
    ; http://php.net/date.default-longitude
    ;date.default_longitude = 35.2333
    ; http://php.net/date.sunrise-zenith
    ;date.sunrise_zenith = 90.583333
    ; http://php.net/date.sunset-zenith
    ;date.sunset_zenith = 90.583333
    [filter]
    ; http://php.net/filter.default
    ;filter.default = unsafe_raw
    ; http://php.net/filter.default-flags
    ;filter.default_flags =
    [iconv]
    ;iconv.input_encoding = ISO-8859-1
    ;iconv.internal_encoding = ISO-8859-1
    ;iconv.output_encoding = ISO-8859-1
    [intl]
    ;intl.default_locale =
    ; This directive allows you to produce PHP errors when some error
    ; happens within intl functions. The value is the level of the error produced.
    ; Default is 0, which does not produce any errors.
    ;intl.error_level = E_WARNING
    [sqlite]
    ; http://php.net/sqlite.assoc-case
    ;sqlite.assoc_case = 0
    [sqlite3]
    ;sqlite3.extension_dir =
    [Pcre]
    ;PCRE library backtracking limit.
    ; http://php.net/pcre.backtrack-limit
    ;pcre.backtrack_limit=100000
    ;PCRE library recursion limit.
    ;Please note that if you set this value to a high number you may consume all
    ;the available process stack and eventually crash PHP (due to reaching the
    ;stack size limit imposed by the Operating System).
    ; http://php.net/pcre.recursion-limit
    ;pcre.recursion_limit=100000
    [Pdo]
    ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
    ; http://php.net/pdo-odbc.connection-pooling
    ;pdo_odbc.connection_pooling=strict
    ;pdo_odbc.db2_instance_name
    [Pdo_mysql]
    ; If mysqlnd is used: Number of cache slots for the internal result set cache
    ; http://php.net/pdo_mysql.cache_size
    pdo_mysql.cache_size = 2000
    ; Default socket name for local MySQL connects. If empty, uses the built-in
    ; MySQL defaults.
    ; http://php.net/pdo_mysql.default-socket
    pdo_mysql.default_socket=
    [Phar]
    ; http://php.net/phar.readonly
    ;phar.readonly = On
    ; http://php.net/phar.require-hash
    ;phar.require_hash = On
    ;phar.cache_list =
    [mail function]
    ; For Win32 only.
    ; http://php.net/smtp
    SMTP = localhost
    ; http://php.net/smtp-port
    smtp_port = 25
    ; For Win32 only.
    ; http://php.net/sendmail-from
    ;sendmail_from = [email protected]
    ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
    ; http://php.net/sendmail-path
    ;sendmail_path =
    ; Force the addition of the specified parameters to be passed as extra parameters
    ; to the sendmail binary. These parameters will always replace the value of
    ; the 5th parameter to mail(), even in safe mode.
    ;mail.force_extra_parameters =
    ; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
    mail.add_x_header = On
    ; The path to a log file that will log all mail() calls. Log entries include
    ; the full path of the script, line number, To address and headers.
    ;mail.log =
    ; Log mail to syslog (Event Log on Windows).
    ;mail.log = syslog
    [SQL]
    ; http://php.net/sql.safe-mode
    sql.safe_mode = Off
    [ODBC]
    ; http://php.net/odbc.default-db
    ;odbc.default_db = Not yet implemented
    ; http://php.net/odbc.default-user
    ;odbc.default_user = Not yet implemented
    ; http://php.net/odbc.default-pw
    ;odbc.default_pw = Not yet implemented
    ; Controls the ODBC cursor model.
    ; Default: SQL_CURSOR_STATIC (default).
    ;odbc.default_cursortype
    ; Allow or prevent persistent links.
    ; http://php.net/odbc.allow-persistent
    odbc.allow_persistent = On
    ; Check that a connection is still valid before reuse.
    ; http://php.net/odbc.check-persistent
    odbc.check_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    ; http://php.net/odbc.max-persistent
    odbc.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    ; http://php.net/odbc.max-links
    odbc.max_links = -1
    ; Handling of LONG fields. Returns number of bytes to variables. 0 means
    ; passthru.
    ; http://php.net/odbc.defaultlrl
    odbc.defaultlrl = 4096
    ; 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 odbc.defaultlrl and odbc.defaultbinmode
    ; http://php.net/odbc.defaultbinmode
    odbc.defaultbinmode = 1
    ;birdstep.max_links = -1
    [Interbase]
    ; Allow or prevent persistent links.
    ibase.allow_persistent = 1
    ; Maximum number of persistent links. -1 means no limit.
    ibase.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    ibase.max_links = -1
    ; Default database name for ibase_connect().
    ;ibase.default_db =
    ; Default username for ibase_connect().
    ;ibase.default_user =
    ; Default password for ibase_connect().
    ;ibase.default_password =
    ; Default charset for ibase_connect().
    ;ibase.default_charset =
    ; Default timestamp format.
    ibase.timestampformat = "%Y-%m-%d %H:%M:%S"
    ; Default date format.
    ibase.dateformat = "%Y-%m-%d"
    ; Default time format.
    ibase.timeformat = "%H:%M:%S"
    [MySQL]
    ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
    ; http://php.net/mysql.allow_local_infile
    mysql.allow_local_infile = On
    ; Allow or prevent persistent links.
    ; http://php.net/mysql.allow-persistent
    mysql.allow_persistent = On
    ; If mysqlnd is used: Number of cache slots for the internal result set cache
    ; http://php.net/mysql.cache_size
    mysql.cache_size = 2000
    ; Maximum number of persistent links. -1 means no limit.
    ; http://php.net/mysql.max-persistent
    mysql.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    ; http://php.net/mysql.max-links
    mysql.max_links = -1
    ; Default port number for mysql_connect(). If unset, mysql_connect() will use
    ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
    ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
    ; at MYSQL_PORT.
    ; http://php.net/mysql.default-port
    mysql.default_port =
    ; Default socket name for local MySQL connects. If empty, uses the built-in
    ; MySQL defaults.
    ; http://php.net/mysql.default-socket
    mysql.default_socket =
    ; Default host for mysql_connect() (doesn't apply in safe mode).
    ; http://php.net/mysql.default-host
    mysql.default_host =
    ; Default user for mysql_connect() (doesn't apply in safe mode).
    ; http://php.net/mysql.default-user
    mysql.default_user =
    ; Default password for mysql_connect() (doesn't apply in safe mode).
    ; Note that this is generally a *bad* idea to store passwords in this file.
    ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
    ; and reveal this password! And of course, any users with read access to this
    ; file will be able to reveal the password as well.
    ; http://php.net/mysql.default-password
    mysql.default_password =
    ; Maximum time (in seconds) for connect timeout. -1 means no limit
    ; http://php.net/mysql.connect-timeout
    mysql.connect_timeout = 60
    ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
    ; SQL-Errors will be displayed.
    ; http://php.net/mysql.trace-mode
    mysql.trace_mode = Off
    [MySQLi]
    ; Maximum number of persistent links. -1 means no limit.
    ; http://php.net/mysqli.max-persistent
    mysqli.max_persistent = -1
    ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
    ; http://php.net/mysqli.allow_local_infile
    ;mysqli.allow_local_infile = On
    ; Allow or prevent persistent links.
    ; http://php.net/mysqli.allow-persistent
    mysqli.allow_persistent = On
    ; Maximum number of links. -1 means no limit.
    ; http://php.net/mysqli.max-links
    mysqli.max_links = -1
    ; If mysqlnd is used: Number of cache slots for the internal result set cache
    ; http://php.net/mysqli.cache_size
    mysqli.cache_size = 2000
    ; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
    ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
    ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
    ; at MYSQL_PORT.
    ; http://php.net/mysqli.default-port
    mysqli.default_port = 3306
    ; Default socket name for local MySQL connects. If empty, uses the built-in
    ; MySQL defaults.
    ; http://php.net/mysqli.default-socket
    mysqli.default_socket =
    ; Default host for mysql_connect() (doesn't apply in safe mode).
    ; http://php.net/mysqli.default-host
    mysqli.default_host =
    ; Default user for mysql_connect() (doesn't apply in safe mode).
    ; http://php.net/mysqli.default-user
    mysqli.default_user =
    ; Default password for mysqli_connect() (doesn't apply in safe mode).
    ; Note that this is generally a *bad* idea to store passwords in this file.
    ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
    ; and reveal this password! And of course, any users with read access to this
    ; file will be able to reveal the password as well.
    ; http://php.net/mysqli.default-pw
    mysqli.default_pw =
    ; Allow or prevent reconnect
    mysqli.reconnect = Off
    [mysqlnd]
    ; Enable / Disable collection of general statistics by mysqlnd which can be
    ; used to tune and monitor MySQL operations.
    ; http://php.net/mysqlnd.collect_statistics
    mysqlnd.collect_statistics = On
    ; Enable / Disable collection of memory usage statistics by mysqlnd which can be
    ; used to tune and monitor MySQL operations.
    ; http://php.net/mysqlnd.collect_memory_statistics
    mysqlnd.collect_memory_statistics = Off
    ; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
    ; http://php.net/mysqlnd.net_cmd_buffer_size
    ;mysqlnd.net_cmd_buffer_size = 2048
    ; Size of a pre-allocated buffer used for reading data sent by the server in
    ; bytes.
    ; http://php.net/mysqlnd.net_read_buffer_size
    ;mysqlnd.net_read_buffer_size = 32768
    [OCI8]
    ; Connection: Enables privileged connections using external
    ; credentials (OCI_SYSOPER, OCI_SYSDBA)
    ; http://php.net/oci8.privileged-connect
    ;oci8.privileged_connect = Off
    ; Connection: The maximum number of persistent OCI8 connections per
    ; process. Using -1 means no limit.
    ; http://php.net/oci8.max-persistent
    ;oci8.max_persistent = -1
    ; Connection: The maximum number of seconds a process is allowed to
    ; maintain an idle persistent connection. Using -1 means idle
    ; persistent connections will be maintained forever.
    ; http://php.net/oci8.persistent-timeout
    ;oci8.persistent_timeout = -1
    ; Connection: The number of seconds that must pass before issuing a
    ; ping during oci_pconnect() to check the connection validity. When
    ; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
    ; pings completely.
    ; http://php.net/oci8.ping-interval
    ;oci8.ping_interval = 60
    ; Connection: Set this to a user chosen connection class to be used
    ; for all pooled server requests with Oracle 11g Database Resident
    ; Connection Pooling (DRCP). To use DRCP, this value should be set to
    ; the same string for all web servers running the same application,
    ; the database pool must be configured, and the connection string must
    ; specify to use a pooled server.
    ;oci8.connection_class =
    ; High Availability: Using On lets PHP receive Fast Application
    ; Notification (FAN) events generated when a database node fails. The
    ; database must also be configured to post FAN events.
    ;oci8.events = Off
    ; Tuning: This option enables statement

    Hi comrades,
    I use rtorrent in terminal without problems but recently I got interested in rutorrent.
    I've been following the rtorrent wiki and rutorrent wiki to get to this point.
    First of all rtorrent is working fine in terminal, but with rutorrent I only get to this far: http://i637.photobucket.com/albums/uu93 … 1403737709
    As you can see in the upeer right of the image it's trying to connect and in the log section is throwing me this:
    [25.06.2014 18:37:22] WebUI started.
    [25.06.2014 18:37:23] Bad response from server: (200 [parsererror,getplugins]) <?php require_once( "util.php" ); require_once( "settings.php" ); function pluginsSort($a, $b) { $lvl1 = (float) $a["info"]["plugin.runlevel"]; $lvl2 = (float) $b["info"]["plugin.runlevel"]; if($lvl1>$lvl2) return(1); if($lvl1<$lvl2) return(-1); return( strcmp($a["name"],$b["name"]) ); } function getFlag($permissions,$pname,$fname) { $ret = true; if(array_key_exists($pname,$permissions) && array_key_exists($fname,$permissions[$pname])) $ret = $permissions[$pname][$fname]; else if(array_key_exists("default",$permissions) && array_key_exists($fname,$permissions["default"])) $ret = $permissions["default"][$fname]; return($ret); } function getPluginInfo( $name, $permissions ) { $info = array( 'rtorrent.need'=>1, 'rtorrent.remote'=>'ok', 'rtorrent.external.warning'=>array(), 'rtorrent.external.error'=>array(), 'rtorrent.script.error'=>array(), 'rtorrent.php.error'=>array(), 'rtorrent.version'=>0x802, 'rtorrent.version.readable'=>'0.8.2', 'plugin.may_be_shutdowned'=>1, 'plugin.may_be_launched'=>1, 'plugin.runlevel'=>10.0, 'plugin.description'=>'', 'plugin.author'=>'unknown', 'plugin.dependencies'=>array(), 'php.version'=>0x50000, 'php.version.readable'=>'5.0.0', 'php.extensions.warning'=>array(), 'php.extensions.error'=>array(), 'web.external.warning'=>array(), 'web.external.error'=>array(), 'plugin.help'=>'', ); $fname = "../plugins/".$name."/plugin.info"; if(is_readable($fname)) { $lines = file($fname); foreach($lines as $line) { $fields = explode(":",$line,2); if(count($fields)==2) { $value = addcslashes(trim($fields[1]),"\\\'\"\n\r\t"); $field = trim($fields[0]); switch($field) { case "plugin.help": case "plugin.author": case "plugin.description": case "rtorrent.remote": { $info[$field] = $value; break; } case "plugin.may_be_shutdowned": case "plugin.may_be_launched": case "rtorrent.need": { $info[$field] = intval($value); break; } case "plugin.version": case "plugin.runlevel": { $info[$field] = floatval($value); break; } case "rtorrent.version": case "php.version": { $version = explode('.', $value); $info[$field] = (intval($version[0])<<16) + (intval($version[1])<<8) + intval($version[2]); $info[$field.'.readable'] = $value; break; } case "plugin.dependencies": case "rtorrent.external.warning": case "rtorrent.external.error": case "rtorrent.script.error": case "rtorrent.php.error": case "web.external.warning": case "web.external.error": case "php.extensions.warning": case "php.extensions.error": { $info[$field] = explode(',', $value); break; } // for compatibility case "author": case "description": { $info['plugin.'.$field] = $value; break; } case "remote": { $info['rtorrent.remote'] = $value; break; } case "need_rtorrent": { $info['rtorrent.need'] = intval($value); break; } case "version": case "runlevel": { $info['plugin.'.$field] = floatval($value); break; } } } } $perms = 0; if($permissions!==false) { if(!getFlag($permissions,$name,"enabled")) return(false); $flags = array( "canChangeToolbar" => 0x0001, "canChangeMenu" => 0x0002, "canChangeOptions" => 0x0004, "canChangeTabs" => 0x0008, "canChangeColumns" => 0x0010, "canChangeStatusBar" => 0x0020, "canChangeCategory" => 0x0040, "canBeShutdowned" => 0x0080, /* "canBeLaunched" => 0x0100, */ ); foreach($flags as $flagName=>$flagVal) if(!getFlag($permissions,$name,$flagName)) $perms|=$flagVal; if(!$info["plugin.may_be_shutdowned"]) $perms|=$flags["canBeShutdowned"]; } $info["perms"] = $perms; } return(array_key_exists("plugin.version",$info) ? $info : false); } function findRemoteEXE( $exe, $err, &$remoteRequests ) { $st = getSettingsPath().'/'.rand(); if(!array_key_exists($exe,$remoteRequests)) { $path=realpath(dirname('.')); global $pathToExternals; $add = ''; if(isset($pathToExternals[$exe]) && !empty($pathToExternals[$exe])) $add = " ".escapeshellarg($pathToExternals[$exe]); $req = new rXMLRPCRequest(new rXMLRPCCommand("execute", array( "sh", "-c", escapeshellarg(addslash($path)."test.sh")." ".$exe." ".escapeshellarg($st).$add))); $req->run(); $remoteRequests[$exe] = array( "path"=>$st, "err"=>array() ); } $remoteRequests[$exe]["err"][] = $err; } function testRemoteRequests($remoteRequests) { $ret = ""; foreach($remoteRequests as $exe=>$info) { $file = $info["path"].$exe.".found"; if(!is_file($file)) { foreach($info["err"] as $err) $ret.=$err; } else @unlink($file); } return($ret); } $jResult = "theWebUI.deltaTime = 0;\n"; $access = getConfFile('access.ini'); if(!$access) $access = "../conf/access.ini"; $permissions = parse_ini_file($access); $settingsFlags = array( "showDownloadsPage" => 0x0001, "showConnectionPage" => 0x0002, "showBittorentPage" => 0x0004, "showAdvancedPage" => 0x0008, "showPluginsTab" => 0x0010, "canChangeULRate" => 0x0020, "canChangeDLRate" => 0x0040, "canChangeTorrentProperties" => 0x0080, ); $perms = 0; foreach($settingsFlags as $flagName=>$flagVal) if(array_key_exists($flagName,$permissions) && $permissions[$flagName]) $perms|=$flagVal; $jResult .= "theWebUI.showFlags = ".$perms.";\n"; $jResult .= "theURLs.XMLRPCMountPoint = '".$XMLRPCMountPoint."';\n"; $jResult.="theWebUI.systemInfo = {};\ntheWebUI.systemInfo.php = { canHandleBigFiles : ".((PHP_INT_SIZE<=4) ? "false" : "true")." };\n"; if($handle = opendir('../plugins')) { ignore_user_abort(true); set_time_limit(0); makeDirectory(getTempDirectory()); if(!@file_exists($tempDirectory.'/.') || !is_readable($tempDirectory) || !is_writable($tempDirectory)) $jResult.="noty(theUILang.badTempPath+' (".$tempDirectory.")','error');"; if(!function_exists('preg_match_all')) { $jResult.="noty(theUILang.PCRENotFound,'error');"; $jResult.="theWebUI.systemInfo.rTorrent = { started: false, iVersion : 0, version : '?', libVersion : '?' };\n"; } else { $remoteRequests = array(); $theSettings = rTorrentSettings::get(true); if(!$theSettings->linkExist) { $jResult.="noty(theUILang.badLinkTorTorrent,'error');"; $jResult.="theWebUI.systemInfo.rTorrent = { started: false, iVersion : 0, version : '?', libVersion : '?', apiVersion : 0 };\n"; } else { if($theSettings->idNotFound) $jResult.="noty(theUILang.idNotFound,'error');"; $jResult.="theWebUI.systemInfo.rTorrent = { started: true, iVersion : ".$theSettings->iVersion.", version : '". $theSettings->version."', libVersion : '".$theSettings->libVersion."', apiVersion : ".$theSettings->apiVersion." };\n"; if($theSettings->mostOfMethodsRenamed) $jResult.="theWebUI.systemInfo.rTorrent.newMethodsSet = true;\n"; if($do_diagnostic) { $up = getUploadsPath(); $st = getSettingsPath(); @chmod($up,$profileMask); @chmod($st,$profileMask); @chmod('./test.sh',$profileMask & 0755); if(PHP_USE_GZIP && (findEXE('gzip')===false)) { @define('PHP_USE_GZIP', false); $jResult.="noty(theUILang.gzipNotFound,'error');"; } if(PHP_INT_SIZE<=4) { if(findEXE('stat')===false) $jResult.="noty(theUILang.statNotFoundW,'error');"; findRemoteEXE('stat',"noty(theUILang.statNotFound,'error');",$remoteRequests); } if(!@file_exists($up.'/.') || !is_readable($up) || !is_writable($up)) $jResult.="noty(theUILang.badUploadsPath+' (".$up.")','error');"; if(!@file_exists($st.'/.') || !is_readable($st) || !is_writable($st)) $jResult.="noty(theUILang.badSettingsPath+' (".$st.")','error');"; if(isLocalMode() && !$theSettings->idNotFound) { if($theSettings->uid<0) $jResult.="noty(theUILang.cantObtainUser,'error');"; else { if(!isUserHavePermission($theSettings->uid,$theSettings->gid,$tempDirectory,0x0007)) $jResult.="noty(theUILang.badTempPath2+' (".$tempDirectory.")','error');"; if(!isUserHavePermission($theSettings->uid,$theSettings->gid,$up,0x0007)) $jResult.="noty(theUILang.badUploadsPath2+' (".$up.")','error');"; if(!isUserHavePermission($theSettings->uid,$theSettings->gid,$st,0x0007)) $jResult.="noty(theUILang.badSettingsPath2+' (".$st.")','error');"; if(!isUserHavePermission($theSettings->uid,$theSettings->gid,'./test.sh',0x0005)) $jResult.="noty(theUILang.badTestPath+' (".realpath('./test.sh').")','error');"; } } if($theSettings->badXMLRPCVersion) $jResult.="noty(theUILang.badXMLRPCVersion,'error');"; } } $plg = getConfFile('plugins.ini'); if(!$plg) $plg = "../conf/plugins.ini"; $permissions = parse_ini_file($plg,true); $init = array(); $names = array(); $disabled = array(); $phpVersion = phpversion(); if( ($pos=strpos($phpVersion, '-'))!==false ) $phpVersion = substr($phpVersion,0,$pos); $phpIVersion = explode('.',$phpVersion); $phpIVersion = (intval($phpIVersion[0])<<16) + (intval($phpIVersion[1])<<8) + intval($phpIVersion[2]); $phpRequired = false; $userPermissions = array( "__hash__"=>"plugins.dat" ); $cache = new rCache(); $cache->get($userPermissions); $cantBeShutdowned = 0x0080; $canBeLaunched = 0x0100; $disabledByUser = 0x8000; $loadedExtensions = array_map("strtolower",get_loaded_extensions()); while(false !== ($file = readdir($handle))) { if($file != "." && $file != ".." && is_dir('../plugins/'.$file)) { if(!array_key_exists($file,$userPermissions)) $userPermissions[$file] = true; $info = getPluginInfo( $file, $permissions ); if($info) { if( $info["plugin.may_be_launched"] && getFlag($permissions,$file,"enabled")=="user-defined") { $info["perms"] |= $canBeLaunched; if(!$userPermissions[$file]) { $info["perms"] |= $disabledByUser; $disabled[$file] = $info; $info = false; } } else $info["perms"] |= $cantBeShutdowned; } if($info!==false) { if(!$theSettings->linkExist && $info["rtorrent.need"]) { $disabled[$file] = $info; continue; } if($info['php.version']>$phpIVersion) { $jResult.="noty('".$file.": '+theUILang.badPHPVersion+' '+'".$info['php.version.readable']."'+'.','error');"; $disabled[$file] = $info; continue; } $extError = false; foreach( $info['php.extensions.error'] as $extension ) if(!in_array( $extension, $loadedExtensions )) { $jResult.="noty('".$file.": '+theUILang.phpExtensionNotFoundError+' ('+'".$extension."'+').','error');"; $extError = true; } if($extError) { $disabled[$file] = $info; continue; } if(count($info['web.external.error']) || count($info['web.external.warning']) || count($info['rtorrent.external.error']) || count($info['rtorrent.external.warning'])) eval( getPluginConf( $file ) ); foreach( $info['web.external.error'] as $external ) { if(findEXE($external)==false) { $jResult.="noty('".$file.": '+theUILang.webExternalNotFoundError+' ('+'".$external."'+').','error');"; $extError = true; } else if($external=='php') $phpRequired = true; } if($extError) { $disabled[$file] = $info; continue; } if($theSettings->linkExist) { if($info['rtorrent.version']>$theSettings->iVersion) { $jResult.="noty('".$file.": '+theUILang.badrTorrentVersion+' '+'".$info['rtorrent.version.readable']."'+'.','error');"; $disabled[$file] = $info; continue; } foreach( $info['rtorrent.external.error'] as $external ) { findRemoteEXE($external,"noty('".$file.": '+theUILang.rTorrentExternalNotFoundError+' ('+'".$external."'+').','error'); thePlugins.get('".$file."').disable();",$remoteRequests); if($external=='php') $phpRequired = true; } foreach( $info['rtorrent.script.error'] as $external ) { $fname = $rootPath.'/plugins/'.$file.'/'.$external; @chmod($fname,$profileMask & 0755); if(!isUserHavePermission($theSettings->uid,$theSettings->gid,$fname,0x0005)) { $jResult.="noty('".$file.": '+theUILang.rTorrentBadScriptPath+' ('+'".$fname."'+').','error');"; $extError = true; } } if($extError) { $disabled[$file] = $info; continue; } foreach( $info['rtorrent.php.error'] as $external ) { $fname = $rootPath.'/plugins/'.$file.'/'.$external; @chmod($fname,$profileMask & 0644); if(!isUserHavePermission($theSettings->uid,$theSettings->gid,$fname,0x0004)) { $jResult.="noty('".$file.": '+theUILang.rTorrentBadPHPScriptPath+' ('+'".$fname."'+').','error');"; $extError = true; } } if($extError) { $disabled[$file] = $info; continue; } if(!isLocalMode()) { if($info["rtorrent.remote"]=="error") { $jResult.="noty('".$file.": '+theUILang.errMustBeInSomeHost,'error');"; $disabled[$file] = $info; continue; } if($do_diagnostic && ($info["rtorrent.remote"]=="warning")) $jResult.="noty('".$file.": '+theUILang.warnMustBeInSomeHost,'error');"; } } if($do_diagnostic) { if($theSettings->linkExist) foreach( $info['rtorrent.external.warning'] as $external ) findRemoteEXE($external,"noty('".$file.": '+theUILang.rTorrentExternalNotFoundWarning+' ('+'".$external."'+').','error');",$remoteRequests); foreach( $info['web.external.warning'] as $external ) if(findEXE($external)==false) $jResult.="noty('".$file.": '+theUILang.webExternalNotFoundWarning+' ('+'".$external."'+').','error');"; foreach( $info['php.extensions.warning'] as $extension ) if(!in_array( $extension, $loadedExtensions )) $jResult.="noty('".$file.": '+theUILang.phpExtensionNotFoundWarning+' ('+'".$extension."'+').','error');"; } $js = "../plugins/".$file."/init.js"; if(!is_readable($js)) $js = NULL; $php = "../plugins/".$file."/init.php"; if(!is_readable($php)) $php = NULL; $init[] = array( "js" => $js, "php" => $php, "info" => $info, "name" => $file ); $names[] = $file; } } } if($phpRequired) { $val = strtoupper(ini_get("register_argc_argv")); if( $val!=='' && $val!='ON' && $val!='1' && $val!='TRUE' ) $jResult.="noty(theUILang.phpParameterUnavailable,'error');"; } usort($init,"pluginsSort"); foreach($init as $plugin) { $jEnd = ''; $pInfo = $plugin["info"]; $deps = array_diff( $pInfo["plugin.dependencies"], $names ); if(count($deps)) { $jResult.="noty('".$plugin["name"].": '+theUILang.dependenceError+' ".implode(",",$deps)."','error');"; $disabled[$plugin["name"]] = $pInfo; continue; } $jResult.="(function () { var plugin = new rPlugin( '".$plugin["name"]."',".$pInfo["plugin.version"]. ",'".$pInfo["plugin.author"]."','".$pInfo["plugin.description"]."',".$pInfo["perms"].",'".$pInfo["plugin.help"]."' );\n"; if($plugin["php"]) require_once( $plugin["php"] ); else $theSettings->registerPlugin($plugin["name"],$pInfo["perms"]); if($plugin["js"]) { $js = file_get_contents($plugin["js"]); if($theSettings->isPluginRegistered($plugin["name"])) $jResult.=$js; else { if(strpos($js,"plugin.loadLang()")!==false) $jResult.="plugin.loadLang();"; } $jResult.="\n"; } $jResult.=$jEnd; $jResult.="\n})();"; } foreach($disabled as $name=>$pInfo) { $jResult.="(function () { var plugin = new rPlugin( '".$name."',".$pInfo["plugin.version"]. ",'".$pInfo["plugin.author"]."','".$pInfo["plugin.description"]."',".$pInfo["perms"].",'".$pInfo["plugin.help"]."' );\n"; $jResult.="plugin.disable(); "; if($pInfo["perms"] & $disabledByUser) $jResult.="plugin.unlaunch(); "; $jResult.="\n})();"; } $jResult.=testRemoteRequests($remoteRequests); $theSettings->store(); } closedir($handle); } cachedEcho($jResult,"application/javascript",true);
    [25.06.2014 18:37:23] Bad response from server: (200 [parsererror,getuisettings]) <?php require_once( 'util.php' ); $s = '{}'; $fname = getSettingsPath()."/uisettings.json"; $fo = fopen($fname, 'r'); if($fo!==false) { if(flock($fo, LOCK_SH)) { $s = @file_get_contents($fname); if($s==false) $s = '{}'; flock($fo, LOCK_UN); } fclose($fo); } cachedEcho($s,"application/json",true);
    For that log I believe I've a problem with permission, or rutorrent plugins.
    Here are my configuration files
    /etc/webapps/rutorrent/conf/config.php
    <?php
    // configuration parameters
    // for snoopy client
    @define('HTTP_USER_AGENT', 'Mozilla/5.0 (Windows NT 6.0; WOW64; rv:12.0) Gecko/20100101 Firefox/12.0', true);
    @define('HTTP_TIME_OUT', 30, true); // in seconds
    @define('HTTP_USE_GZIP', true, true);
    $httpIP = null; // IP string. Or null for any.
    @define('RPC_TIME_OUT', 5, true); // in seconds
    @define('LOG_RPC_CALLS', false, true);
    @define('LOG_RPC_FAULTS', true, true);
    // for php
    @define('PHP_USE_GZIP', false, true);
    @define('PHP_GZIP_LEVEL', 2, true);
    $schedule_rand = 10; // rand for schedulers start, +0..X seconds
    $do_diagnostic = true;
    $log_file = '/tmp/errors.log'; // path to log file (comment or leave blank to disable logging)
    $saveUploadedTorrents = true; // Save uploaded torrents to profile/torrents directory or not
    $overwriteUploadedTorrents = false; // Overwrite existing uploaded torrents in profile/torrents directory or make unique name
    $topDirectory = '/'; // Upper available directory. Absolute path with trail slash.
    $forbidUserSettings = false;
    $scgi_port = 5000;
    $scgi_host = "127.0.0.1";
    // For web->rtorrent link through unix domain socket
    // (scgi_local in rtorrent conf file), change variables
    // above to something like this:
    // $scgi_port = 0;
    // $scgi_host = "unix:///tmp/rpc.socket";
    $XMLRPCMountPoint = "/RPC2"; // DO NOT DELETE THIS LINE!!! DO NOT COMMENT THIS LINE!!!
    $pathToExternals = array(
    "php" => '/usr/bin/php', // Something like /usr/bin/php. If empty, will be found in PATH.
    "curl" => '/usr/bin/curl', // Something like /usr/bin/curl. If empty, will be found in PATH.
    "gzip" => '/usr/bin/gzip', // Something like /usr/bin/gzip. If empty, will be found in PATH.
    "id" => '/usr/bin/id', // Something like /usr/bin/id. If empty, will be found in PATH.
    "stat" => '/usr/bin/stat', // Something like /usr/bin/stat. If empty, will be found in PATH.
    $localhosts = array( // list of local interfaces
    "127.0.0.1",
    "localhost",
    $profilePath = '../share'; // Path to user profiles
    $profileMask = 0777; // Mask for files and directory creation in user profiles.
    // Both Webserver and rtorrent users must have read-write access to it.
    // For example, if Webserver and rtorrent users are in the same group then the value may be 0770.
    $tempDirectory = null; // Temp directory. Absolute path with trail slash. If null, then autodetect will be used.
    ~/.rtorrent.rc
    scgi_port = localhost:5000
    directory = /home/milo/Downloads
    session = /home/milo/.rutorrent/.session
    schedule = watch_directory,5,5,load_start=/home/milo/Downloads/*.torrent
    schedule = low_diskspace,5,60,close_low_diskspace=100M
    port_range = 49152-50000
    check_hash = no
    encryption = allow_incoming,try_outgoing,enable_retry
    dht = auto
    dht_port = 6881
    peer_exchange = yes
    /etc/php/php.ini
    [PHP]
    ; About php.ini ;
    ; PHP's initialization file, generally called php.ini, is responsible for
    ; configuring many of the aspects of PHP's behavior.
    ; PHP attempts to find and load this configuration from a number of locations.
    ; The following is a summary of its search order:
    ; 1. SAPI module specific location.
    ; 2. The PHPRC environment variable. (As of PHP 5.2.0)
    ; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0)
    ; 4. Current working directory (except CLI)
    ; 5. The web server's directory (for SAPI modules), or directory of PHP
    ; (otherwise in Windows)
    ; 6. The directory from the --with-config-file-path compile time option, or the
    ; Windows directory (C:\windows or C:\winnt)
    ; See the PHP docs for more specific information.
    ; http://php.net/configuration.file
    ; 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 following the section heading [PATH=/www/mysite] only
    ; apply to PHP files in the /www/mysite directory. Directives
    ; following the section heading [HOST=www.example.com] only apply to
    ; PHP files served from www.example.com. Directives set in these
    ; special sections cannot be overridden by user-defined INI files or
    ; at runtime. Currently, [PATH=] and [HOST=] sections only work under
    ; CGI/FastCGI.
    ; http://php.net/ini.sections
    ; Directives are specified using the following syntax:
    ; directive = value
    ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
    ; Directives are variables used to configure PHP or PHP extensions.
    ; There is no name validation. If PHP can't find an expected
    ; directive because it is not set or is mistyped, a default value will be used.
    ; 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), a quoted string ("bar"), or a reference to a
    ; previously set variable or directive (e.g. ${foo})
    ; Expressions in the INI file are limited to bitwise operators and parentheses:
    ; | bitwise OR
    ; ^ bitwise XOR
    ; & 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.
    ; About this file ;
    ; PHP comes packaged with two INI files. One that is recommended to be used
    ; in production environments and one that is recommended to be used in
    ; development environments.
    ; php.ini-production contains settings which hold security, performance and
    ; best practices at its core. But please be aware, these settings may break
    ; compatibility with older or less security conscience applications. We
    ; recommending using the production ini in production and testing environments.
    ; php.ini-development is very similar to its production variant, except it's
    ; much more verbose when it comes to errors. We recommending using the
    ; development version only in development environments as errors shown to
    ; application users can inadvertently leak otherwise secure information.
    ; This is php.ini-production INI file.
    ; Quick Reference ;
    ; The following are all the settings which are different in either the production
    ; or development versions of the INIs with respect to PHP's default behavior.
    ; Please see the actual settings later in the document for more details as to why
    ; we recommend these changes in PHP's behavior.
    ; display_errors
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; display_startup_errors
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: Off
    ; error_reporting
    ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
    ; Development Value: E_ALL
    ; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
    ; html_errors
    ; Default Value: On
    ; Development Value: On
    ; Production value: On
    ; log_errors
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: On
    ; max_input_time
    ; Default Value: -1 (Unlimited)
    ; Development Value: 60 (60 seconds)
    ; Production Value: 60 (60 seconds)
    ; output_buffering
    ; Default Value: Off
    ; Development Value: 4096
    ; Production Value: 4096
    ; register_argc_argv
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; request_order
    ; Default Value: None
    ; Development Value: "GP"
    ; Production Value: "GP"
    ; session.gc_divisor
    ; Default Value: 100
    ; Development Value: 1000
    ; Production Value: 1000
    ; session.hash_bits_per_character
    ; Default Value: 4
    ; Development Value: 5
    ; Production Value: 5
    ; short_open_tag
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; track_errors
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: Off
    ; url_rewriter.tags
    ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
    ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
    ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
    ; variables_order
    ; Default Value: "EGPCS"
    ; Development Value: "GPCS"
    ; Production Value: "GPCS"
    ; php.ini Options ;
    ; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
    ;user_ini.filename = ".user.ini"
    ; To disable this feature set this option to empty value
    ;user_ini.filename =
    ; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
    ;user_ini.cache_ttl = 300
    ; Language Options ;
    ; Enable the PHP scripting language engine under Apache.
    ; http://php.net/engine
    engine = On
    ; This directive determines whether or not PHP will recognize code between
    ; <? and ?> tags as PHP source which should be processed as such. It is
    ; generally recommended that <?php and ?> should be used and that this feature
    ; should be disabled, as enabling it may result in issues when generating XML
    ; documents, however this remains supported for backward compatibility reasons.
    ; Note that this directive does not control the <?= shorthand tag, which can be
    ; used regardless of this directive.
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; http://php.net/short-open-tag
    short_open_tag = Off
    ; Allow ASP-style <% %> tags.
    ; http://php.net/asp-tags
    asp_tags = Off
    ; The number of significant digits displayed in floating point numbers.
    ; http://php.net/precision
    precision = 14
    ; Output buffering is a mechanism for controlling how much output data
    ; (excluding headers and cookies) PHP should keep internally before pushing that
    ; data to the client. If your application's output exceeds this setting, PHP
    ; will send that data in chunks of roughly the size you specify.
    ; Turning on this setting and managing its maximum buffer size can yield some
    ; interesting side-effects depending on your application and web server.
    ; You may be able to send headers and cookies after you've already sent output
    ; through print or echo. You also may see performance benefits if your server is
    ; emitting less packets due to buffered output versus PHP streaming the output
    ; as it gets it. On production servers, 4096 bytes is a good setting for performance
    ; reasons.
    ; Note: Output buffering can also be controlled via Output Buffering Control
    ; functions.
    ; Possible Values:
    ; On = Enabled and buffer is unlimited. (Use with caution)
    ; Off = Disabled
    ; Integer = Enables the buffer and sets its maximum size in bytes.
    ; Note: This directive is hardcoded to Off for the CLI SAPI
    ; Default Value: Off
    ; Development Value: 4096
    ; Production Value: 4096
    ; http://php.net/output-buffering
    output_buffering = 4096
    ; 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: People who wrote portable scripts should not depend on this ini
    ; directive. Instead, explicitly set the output handler using ob_start().
    ; Using this ini directive may cause problems unless you know what script
    ; is doing.
    ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
    ; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
    ; Note: output_handler must be empty if this is set 'On' !!!!
    ; Instead you must use zlib.output_handler.
    ; http://php.net/output-handler
    ;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)
    ; Note: 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: You need to use zlib.output_handler instead of the standard
    ; output_handler, or otherwise the output will be corrupted.
    ; http://php.net/zlib.output-compression
    zlib.output_compression = Off
    ; http://php.net/zlib.output-compression-level
    ;zlib.output_compression_level = -1
    ; 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.
    ; http://php.net/zlib.output-handler
    ;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() 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.
    ; http://php.net/implicit-flush
    ; Note: This directive is hardcoded to On for the CLI SAPI
    implicit_flush = Off
    ; The unserialize callback function will be called (with the undefined class'
    ; name as parameter), if the unserializer finds an undefined class
    ; which should be instantiated. 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 = 17
    ; 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.
    ; http://php.net/open-basedir
    open_basedir = /srv/http/:/home/:/tmp/:/usr/share/pear/:/usr/share/webapps/:/etc/webapps/rutorrent/conf/:/usr/share/webapps/rutorrent/php/:/usr/share/webapps/rutorrent/
    ; 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.
    ; http://php.net/disable-functions
    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.
    ; http://php.net/disable-classes
    disable_classes =
    ; Colors for Syntax Highlighting mode. Anything that's acceptable in
    ; <span style="color: ???????"> would work.
    ; http://php.net/syntax-highlighting
    ;highlight.string = #DD0000
    ;highlight.comment = #FF9900
    ;highlight.keyword = #007700
    ;highlight.default = #0000BB
    ;highlight.html = #000000
    ; If enabled, the request will be allowed to complete even if the user aborts
    ; the request. Consider enabling it if executing long requests, which may end up
    ; being interrupted by the user or a browser timing out. PHP's default behavior
    ; is to disable this feature.
    ; http://php.net/ignore-user-abort
    ;ignore_user_abort = On
    ; Determines the size of the realpath cache to be used by PHP. This value should
    ; be increased on systems where PHP opens many files to reflect the quantity of
    ; the file operations performed.
    ; http://php.net/realpath-cache-size
    ;realpath_cache_size = 16k
    ; Duration of time, in seconds for which to cache realpath information for a given
    ; file or directory. For systems with rarely changing files, consider increasing this
    ; value.
    ; http://php.net/realpath-cache-ttl
    ;realpath_cache_ttl = 120
    ; Enables or disables the circular reference collector.
    ; http://php.net/zend.enable-gc
    zend.enable_gc = On
    ; If enabled, scripts may be written in encodings that are incompatible with
    ; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such
    ; encodings. To use this feature, mbstring extension must be enabled.
    ; Default: Off
    ;zend.multibyte = Off
    ; Allows to set the default encoding for the scripts. This value will be used
    ; unless "declare(encoding=...)" directive appears at the top of the script.
    ; Only affects if zend.multibyte is set.
    ; Default: ""
    ;zend.script_encoding =
    ; Miscellaneous ;
    ; 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.
    ; http://php.net/expose-php
    expose_php = On
    ; Resource Limits ;
    ; Maximum execution time of each script, in seconds
    ; http://php.net/max-execution-time
    ; Note: This directive is hardcoded to 0 for the CLI SAPI
    max_execution_time = 30
    ; Maximum amount of time each script may spend parsing request data. It's a good
    ; idea to limit this time on productions servers in order to eliminate unexpectedly
    ; long running scripts.
    ; Note: This directive is hardcoded to -1 for the CLI SAPI
    ; Default Value: -1 (Unlimited)
    ; Development Value: 60 (60 seconds)
    ; Production Value: 60 (60 seconds)
    ; http://php.net/max-input-time
    max_input_time = 60
    ; Maximum input variable nesting level
    ; http://php.net/max-input-nesting-level
    ;max_input_nesting_level = 64
    ; How many GET/POST/COOKIE input variables may be accepted
    ; max_input_vars = 1000
    ; Maximum amount of memory a script may consume (128MB)
    ; http://php.net/memory-limit
    memory_limit = 128M
    ; Error handling and logging ;
    ; This directive informs PHP of which errors, warnings and notices you would like
    ; it to take action for. The recommended way of setting values for this
    ; directive is through the use of the error level constants and bitwise
    ; operators. The error level constants are below here for convenience as well as
    ; some common settings and their meanings.
    ; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
    ; those related to E_NOTICE and E_STRICT, which together cover best practices and
    ; recommended coding standards in PHP. For performance reasons, this is the
    ; recommend error reporting setting. Your production server shouldn't be wasting
    ; resources complaining about best practices and coding standards. That's what
    ; development servers and development settings are for.
    ; Note: The php.ini-development file has this setting as E_ALL. This
    ; means it pretty much reports everything which is exactly what you want during
    ; development and early testing.
    ; Error Level Constants:
    ; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0)
    ; E_ERROR - fatal run-time errors
    ; E_RECOVERABLE_ERROR - almost fatal run-time errors
    ; E_WARNING - run-time warnings (non-fatal errors)
    ; E_PARSE - compile-time parse errors
    ; E_NOTICE - run-time notices (these are warnings which often result
    ; from a bug in your code, but it's possible that it was
    ; intentional (e.g., using an uninitialized variable and
    ; relying on the fact it's automatically initialized to an
    ; empty string)
    ; E_STRICT - run-time notices, enable to have PHP suggest changes
    ; to your code which will ensure the best interoperability
    ; and forward compatibility of your code
    ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
    ; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
    ; initial startup
    ; E_COMPILE_ERROR - fatal compile-time errors
    ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
    ; E_USER_ERROR - user-generated error message
    ; E_USER_WARNING - user-generated warning message
    ; E_USER_NOTICE - user-generated notice message
    ; E_DEPRECATED - warn about code that will not work in future versions
    ; of PHP
    ; E_USER_DEPRECATED - user-generated deprecation warnings
    ; Common Values:
    ; E_ALL (Show all errors, warnings and notices including coding standards.)
    ; E_ALL & ~E_NOTICE (Show all errors, except for notices)
    ; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)
    ; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
    ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
    ; Development Value: E_ALL
    ; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
    ; http://php.net/error-reporting
    error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
    ; This directive controls whether or not and where PHP will output errors,
    ; notices and warnings too. Error output is very useful during development, but
    ; it could be very dangerous in production environments. Depending on the code
    ; which is triggering the error, sensitive information could potentially leak
    ; out of your application such as database usernames and passwords or worse.
    ; It's recommended that errors be logged on production servers rather than
    ; having the errors sent to STDOUT.
    ; Possible Values:
    ; Off = Do not display any errors
    ; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
    ; On or stdout = Display errors to STDOUT
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/display-errors
    display_errors = Off
    ; The display of errors which occur during PHP's startup sequence are handled
    ; separately from display_errors. PHP's default behavior is to suppress those
    ; errors from clients. Turning the display of startup errors on can be useful in
    ; debugging configuration problems. But, it's strongly recommended that you
    ; leave this setting off on production servers.
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/display-startup-errors
    display_startup_errors = Off
    ; Besides displaying errors, PHP can also log errors to locations such as a
    ; server-specific log, STDERR, or a location specified by the error_log
    ; directive found below. While errors should not be displayed on productions
    ; servers they should still be monitored and logging is a great way to do that.
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: On
    ; http://php.net/log-errors
    log_errors = On
    ; Set maximum length of log_errors. In error_log information about the source is
    ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
    ; http://php.net/log-errors-max-len
    log_errors_max_len = 1024
    ; Do not log repeated messages. Repeated errors must occur in same file on same
    ; line unless ignore_repeated_source is set true.
    ; http://php.net/ignore-repeated-errors
    ignore_repeated_errors = Off
    ; Ignore source of message when ignoring repeated messages. When this setting
    ; is On you will not log errors with repeated messages from different files or
    ; source lines.
    ; http://php.net/ignore-repeated-source
    ignore_repeated_source = Off
    ; If this parameter is set to Off, then memory leaks will not be shown (on
    ; stdout or in the log). This has only effect in a debug compile, and if
    ; error reporting includes E_WARNING in the allowed list
    ; http://php.net/report-memleaks
    report_memleaks = On
    ; This setting is on by default.
    ;report_zend_debug = 0
    ; Store the last error/warning message in $php_errormsg (boolean). Setting this value
    ; to On can assist in debugging and is appropriate for development servers. It should
    ; however be disabled on production servers.
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/track-errors
    track_errors = Off
    ; Turn off normal error reporting and emit XML-RPC error XML
    ; http://php.net/xmlrpc-errors
    ;xmlrpc_errors = 0
    ; An XML-RPC faultCode
    ;xmlrpc_error_number = 0
    ; When PHP displays or logs an error, it has the capability of formatting the
    ; error message as HTML for easier reading. This directive controls whether
    ; the error message is formatted as HTML or not.
    ; Note: This directive is hardcoded to Off for the CLI SAPI
    ; Default Value: On
    ; Development Value: On
    ; Production value: On
    ; http://php.net/html-errors
    html_errors = On
    ; If html_errors is set to On *and* docref_root is not empty, then 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://php.net/docs
    ; 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. PHP's default behavior is to leave these settings empty, in which
    ; case no links to documentation are generated.
    ; Note: Never use this feature for production boxes.
    ; http://php.net/docref-root
    ; Examples
    ;docref_root = "/phpmanual/"
    ; http://php.net/docref-ext
    ;docref_ext = .html
    ; String to output before an error message. PHP's default behavior is to leave
    ; this setting blank.
    ; http://php.net/error-prepend-string
    ; Example:
    ;error_prepend_string = "<span style='color: #ff0000'>"
    ; String to output after an error message. PHP's default behavior is to leave
    ; this setting blank.
    ; http://php.net/error-append-string
    ; Example:
    ;error_append_string = "</span>"
    ; Log errors to specified file. PHP's default behavior is to leave this value
    ; empty.
    ; http://php.net/error-log
    ; Example:
    ;error_log = php_errors.log
    ; Log errors to syslog (Event Log on Windows).
    ;error_log = syslog
    ;windows.show_crt_warning
    ; Default value: 0
    ; Development value: 0
    ; Production value: 0
    ; Data Handling ;
    ; The separator used in PHP generated URLs to separate arguments.
    ; PHP's default setting is "&".
    ; http://php.net/arg-separator.output
    ; Example:
    ;arg_separator.output = "&amp;"
    ; List of separator(s) used by PHP to parse input URLs into variables.
    ; PHP's default setting is "&".
    ; NOTE: Every character in this directive is considered as separator!
    ; http://php.net/arg-separator.input
    ; Example:
    ;arg_separator.input = ";&"
    ; This directive determines which super global arrays are registered when PHP
    ; starts up. G,P,C,E & S are abbreviations for the following respective super
    ; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty
    ; paid for the registration of these arrays and because ENV is not as commonly
    ; used as the others, ENV is not recommended on productions servers. You
    ; can still get access to the environment variables through getenv() should you
    ; need to.
    ; Default Value: "EGPCS"
    ; Development Value: "GPCS"
    ; Production Value: "GPCS";
    ; http://php.net/variables-order
    variables_order = "GPCS"
    ; This directive determines which super global data (G,P,C,E & S) should
    ; be registered into the super global array REQUEST. If so, it also determines
    ; the order in which that data is registered. The values for this directive are
    ; specified in the same manner as the variables_order directive, EXCEPT one.
    ; Leaving this value empty will cause PHP to use the value set in the
    ; variables_order directive. It does not mean it will leave the super globals
    ; array REQUEST empty.
    ; Default Value: None
    ; Development Value: "GP"
    ; Production Value: "GP"
    ; http://php.net/request-order
    request_order = "GP"
    ; This directive determines whether PHP registers $argv & $argc each time it
    ; runs. $argv contains an array of all the arguments passed to PHP when a script
    ; is invoked. $argc contains an integer representing the number of arguments
    ; that were passed when the script was invoked. These arrays are extremely
    ; useful when running scripts from the command line. When this directive is
    ; enabled, registering these variables consumes CPU cycles and memory each time
    ; a script is executed. For performance reasons, this feature should be disabled
    ; on production servers.
    ; Note: This directive is hardcoded to On for the CLI SAPI
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; http://php.net/register-argc-argv
    register_argc_argv = Off
    ; When enabled, the ENV, REQUEST and SERVER variables are created when they're
    ; first used (Just In Time) instead of when the script starts. If these
    ; variables are not used within a script, having this directive on will result
    ; in a performance gain. The PHP directive register_argc_argv must be disabled
    ; for this directive to have any affect.
    ; http://php.net/auto-globals-jit
    auto_globals_jit = On
    ; Whether PHP will read the POST data.
    ; This option is enabled by default.
    ; Most likely, you won't want to disable this option globally. It causes $_POST
    ; and $_FILES to always be empty; the only way you will be able to read the
    ; POST data will be through the php://input stream wrapper. This can be useful
    ; to proxy requests or to process the POST data in a memory efficient fashion.
    ; http://php.net/enable-post-data-reading
    ;enable_post_data_reading = Off
    ; Maximum size of POST data that PHP will accept.
    ; Its value may be 0 to disable the limit. It is ignored if POST data reading
    ; is disabled through enable_post_data_reading.
    ; http://php.net/post-max-size
    post_max_size = 8M
    ; Automatically add files before PHP document.
    ; http://php.net/auto-prepend-file
    auto_prepend_file =
    ; Automatically add files after PHP document.
    ; http://php.net/auto-append-file
    auto_append_file =
    ; By default, PHP will output a character encoding using
    ; the Content-type: header. To disable sending of the charset, simply
    ; set it to be empty.
    ; PHP's built-in default is text/html
    ; http://php.net/default-mimetype
    default_mimetype = "text/html"
    ; PHP's default character set is set to empty.
    ; http://php.net/default-charset
    ;default_charset = "UTF-8"
    ; Always populate the $HTTP_RAW_POST_DATA variable. PHP's default behavior is
    ; to disable this feature. If post reading is disabled through
    ; enable_post_data_reading, $HTTP_RAW_POST_DATA is *NOT* populated.
    ; http://php.net/always-populate-raw-post-data
    ;always_populate_raw_post_data = On
    ; Paths and Directories ;
    ; UNIX: "/path1:/path2"
    include_path = ".:/usr/share/pear"
    ; Windows: "\path1;\path2"
    ;include_path = ".;c:\php\includes"
    ; PHP's default setting for include_path is ".;/path/to/php/pear"
    ; http://php.net/include-path
    ; 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 (other than IIS)
    ; see documentation for security issues. The alternate is to use the
    ; cgi.force_redirect configuration below
    ; http://php.net/doc-root
    doc_root =
    ; The directory under which PHP opens the script using /~username used only
    ; if nonempty.
    ; http://php.net/user-dir
    user_dir =
    ; Directory in which the loadable extensions (modules) reside.
    ; http://php.net/extension-dir
    extension_dir = "/usr/lib/php/modules/"
    ; On windows:
    ; extension_dir = "ext"
    ; Directory where the temporary files should be placed.
    ; Defaults to the system default (see sys_get_temp_dir)
    ; sys_temp_dir = "/tmp"
    ; Whether or not to enable the dl() function. The dl() function does NOT work
    ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
    ; disabled on them.
    ; http://php.net/enable-dl
    enable_dl = Off
    ; 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.**
    ; http://php.net/cgi.force-redirect
    ;cgi.force_redirect = 1
    ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
    ; every request. PHP's default behavior is to disable this feature.
    ;cgi.nph = 1
    ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
    ; (iPlanet) 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.
    ; http://php.net/cgi.redirect-status-env
    ;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_INFO, see the cgi specs. Setting
    ; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
    ; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
    ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
    ; http://php.net/cgi.fix-pathinfo
    ;cgi.fix_pathinfo=1
    ; FastCGI under IIS (on WINNT based OS) 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 (03/17/2002)
    ; Set to 1 if running under IIS. Default is zero.
    ; http://php.net/fastcgi.impersonate
    ;fastcgi.impersonate = 1
    ; Disable logging through FastCGI connection. PHP's default behavior is to enable
    ; this feature.
    ;fastcgi.logging = 0
    ; 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: header that
    ; is supported by Apache. When this option is set to 1 PHP will send
    ; RFC2616 compliant header.
    ; Default is zero.
    ; http://php.net/cgi.rfc2616-headers
    ;cgi.rfc2616_headers = 0
    ; File Uploads ;
    ; Whether to allow HTTP file uploads.
    ; http://php.net/file-uploads
    file_uploads = On
    ; Temporary directory for HTTP uploaded files (will use system default if not
    ; specified).
    ; http://php.net/upload-tmp-dir
    ;upload_tmp_dir =
    ; Maximum allowed size for uploaded files.
    ; http://php.net/upload-max-filesize
    upload_max_filesize = 2M
    ; Maximum number of files that can be uploaded via a single request
    max_file_uploads = 20
    ; Fopen wrappers ;
    ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
    ; http://php.net/allow-url-fopen
    allow_url_fopen = On
    ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
    ; http://php.net/allow-url-include
    allow_url_include = Off
    ; Define the anonymous ftp password (your email address). PHP's default setting
    ; for this is empty.
    ; http://php.net/from
    ;from="[email protected]"
    ; Define the User-Agent string. PHP's default setting for this is empty.
    ; http://php.net/user-agent
    ;user_agent="PHP"
    ; Default timeout for socket based streams (seconds)
    ; http://php.net/default-socket-timeout
    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 systems, setting this flag will cause PHP to
    ; automatically detect the EOL character in those files so that
    ; fgets() and file() will work regardless of the source of the file.
    ; http://php.net/auto-detect-line-endings
    ;auto_detect_line_endings = Off
    ; Dynamic Extensions ;
    ; If you wish to have an extension loaded automatically, use the following
    ; syntax:
    ; extension=modulename.extension
    ; For example, on Windows:
    ; extension=msql.dll
    ; ... or under UNIX:
    ; extension=msql.so
    ; ... or with a path:
    ; extension=/path/to/extension/msql.so
    ; If you only provide the name of the extension, PHP will look for it in its
    ; default extension directory.
    ;extension=bcmath.so
    ;extension=bz2.so
    ;extension=calendar.so
    extension=curl.so
    ;extension=dba.so
    ;extension=enchant.so
    ;extension=exif.so
    ;extension=ftp.so
    ;extension=gd.so
    extension=gettext.so
    ;extension=gmp.so
    ;extension=iconv.so
    ;extension=imap.so
    ;extension=intl.so
    ;extension=ldap.so
    ;extension=mcrypt.so
    ;extension=mssql.so
    ;extension=mysqli.so
    ;extension=mysql.so
    ;extension=odbc.so
    ;zend_extension=opcache.so
    ;extension=openssl.so
    ;extension=pdo_mysql.so
    ;extension=pdo_odbc.so
    ;extension=pdo_pgsql.so
    ;extension=pdo_sqlite.so
    ;extension=pgsql.so
    ;extension=phar.so
    ;extension=posix.so
    ;extension=pspell.so
    ;extension=shmop.so
    ;extension=snmp.so
    ;extension=soap.so
    ;extension=sockets.so
    ;extension=sqlite3.so
    ;extension=sysvmsg.so
    ;extension=sysvsem.so
    ;extension=sysvshm.so
    ;extension=tidy.so
    ;extension=xmlrpc.so
    ;extension=xsl.so
    ;extension=zip.so
    ; Module Settings ;
    [CLI Server]
    ; Whether the CLI web server uses ANSI color coding in its terminal output.
    cli_server.color = On
    [Date]
    ; Defines the default timezone used by the date functions
    ; http://php.net/date.timezone
    ;date.timezone =
    ; http://php.net/date.default-latitude
    ;date.default_latitude = 31.7667
    ; http://php.net/date.default-longitude
    ;date.default_longitude = 35.2333
    ; http://php.net/date.sunrise-zenith
    ;date.sunrise_zenith = 90.583333
    ; http://php.net/date.sunset-zenith
    ;date.sunset_zenith = 90.583333
    [filter]
    ; http://php.net/filter.default
    ;filter.default = unsafe_raw
    ; http://php.net/filter.default-flags
    ;filter.default_flags =
    [iconv]
    ;iconv.input_encoding = ISO-8859-1
    ;iconv.internal_encoding = ISO-8859-1
    ;iconv.output_encoding = ISO-8859-1
    [intl]
    ;intl.default_locale =
    ; This directive allows you to produce PHP errors when some error
    ; happens within intl functions. The value is the level of the error produced.
    ; Default is 0, which does not produce any errors.
    ;intl.error_level = E_WARNING
    [sqlite]
    ; http://php.net/sqlite.assoc-case
    ;sqlite.assoc_case = 0
    [sqlite3]
    ;sqlite3.extension_dir =
    [Pcre]
    ;PCRE library backtracking limit.
    ; http://php.net/pcre.backtrack-limit
    ;pcre.backtrack_limit=100000
    ;PCRE library recursion limit.
    ;Please note that if you set this value to a high number you may consume all
    ;the available process stack and eventually crash PHP (due to reaching the
    ;stack size limit imposed by the Operating System).
    ; http://php.net/pcre.recursion-limit
    ;pcre.recursion_limit=100000
    [Pdo]
    ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
    ; http://php.net/pdo-odbc.connection-pooling
    ;pdo_odbc.connection_pooling=strict
    ;pdo_odbc.db2_instance_name
    [Pdo_mysql]
    ; If mysqlnd is used: Number of cache slots for the internal result set cache
    ; http://php.net/pdo_mysql.cache_size
    pdo_mysql.cache_size = 2000
    ; Default socket name for local MySQL connects. If empty, uses the built-in
    ; MySQL defaults.
    ; http://php.net/pdo_mysql.default-socket
    pdo_mysql.default_socket=
    [Phar]
    ; http://php.net/phar.readonly
    ;phar.readonly = On
    ; http://php.net/phar.require-hash
    ;phar.require_hash = On
    ;phar.cache_list =
    [mail function]
    ; For Win32 only.
    ; http://php.net/smtp
    SMTP = localhost
    ; http://php.net/smtp-port
    smtp_port = 25
    ; For Win32 only.
    ; http://php.net/sendmail-from
    ;sendmail_from = [email protected]
    ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
    ; http://php.net/sendmail-path
    ;sendmail_path =
    ; Force the addition of the specified parameters to be passed as extra parameters
    ; to the sendmail binary. These parameters will always replace the value of
    ; the 5th parameter to mail(), even in safe mode.
    ;mail.force_extra_parameters =
    ; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
    mail.add_x_header = On
    ; The path to a log file that will log all mail() calls. Log entries include
    ; the full path of the script, line number, To address and headers.
    ;mail.log =
    ; Log mail to syslog (Event Log on Windows).
    ;mail.log = syslog
    [SQL]
    ; http://php.net/sql.safe-mode
    sql.safe_mode = Off
    [ODBC]
    ; http://php.net/odbc.default-db
    ;odbc.default_db = Not yet implemented
    ; http://php.net/odbc.default-user
    ;odbc.default_user = Not yet implemented
    ; http://php.net/odbc.default-pw
    ;odbc.default_pw = Not yet implemented
    ; Controls the ODBC cursor model.
    ; Default: SQL_CURSOR_STATIC (default).
    ;odbc.default_cursortype
    ; Allow or prevent persistent links.
    ; http://php.net/odbc.allow-persistent
    odbc.allow_persistent = On
    ; Check that a connection is still valid before reuse.
    ; http://php.net/odbc.check-persistent
    odbc.check_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    ; http://php.net/odbc.max-persistent
    odbc.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    ; http://php.net/odbc.max-links
    odbc.max_links = -1
    ; Handling of LONG fields. Returns number of bytes to variables. 0 means
    ; passthru.
    ; http://php.net/odbc.defaultlrl
    odbc.defaultlrl = 4096
    ; 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 odbc.defaultlrl and odbc.defaultbinmode
    ; http://php.net/odbc.defaultbinmode
    odbc.defaultbinmode = 1
    ;birdstep.max_links = -1
    [Interbase]
    ; Allow or prevent persistent links.
    ibase.allow_persistent = 1
    ; Maximum number of persistent links. -1 means no limit.
    ibase.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    ibase.max_links = -1
    ; Default database name for ibase_connect().
    ;ibase.default_db =
    ; Default username for ibase_connect().
    ;ibase.default_user =
    ; Default password for ibase_connect().
    ;ibase.default_password =
    ; Default charset for ibase_connect().
    ;ibase.default_charset =
    ; Default timestamp format.
    ibase.timestampformat = "%Y-%m-%d %H:%M:%S"
    ; Default date format.
    ibase.dateformat = "%Y-%m-%d"
    ; Default time format.
    ibase.timeformat = "%H:%M:%S"
    [MySQL]
    ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
    ; http://php.net/mysql.allow_local_infile
    mysql.allow_local_infile = On
    ; Allow or prevent persistent links.
    ; http://php.net/mysql.allow-persistent
    mysql.allow_persistent = On
    ; If mysqlnd is used: Number of cache slots for the internal result set cache
    ; http://php.net/mysql.cache_size
    mysql.cache_size = 2000
    ; Maximum number of persistent links. -1 means no limit.
    ; http://php.net/mysql.max-persistent
    mysql.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    ; http://php.net/mysql.max-links
    mysql.max_links = -1
    ; Default port number for mysql_connect(). If unset, mysql_connect() will use
    ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
    ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
    ; at MYSQL_PORT.
    ; http://php.net/mysql.default-port
    mysql.default_port =
    ; Default socket name for local MySQL connects. If empty, uses the built-in
    ; MySQL defaults.
    ; http://php.net/mysql.default-socket
    mysql.default_socket =
    ; Default host for mysql_connect() (doesn't apply in safe mode).
    ; http://php.net/mysql.default-host
    mysql.default_host =
    ; Default user for mysql_connect() (doesn't apply in safe mode).
    ; http://php.net/mysql.default-user
    mysql.default_user =
    ; Default password for mysql_connect() (doesn't apply in safe mode).
    ; Note that this is generally a *bad* idea to store passwords in this file.
    ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
    ; and reveal this password! And of course, any users with read access to this
    ; file will be able to reveal the password as well.
    ; http://php.net/mysql.default-password
    mysql.default_password =
    ; Maximum time (in seconds) for connect timeout. -1 means no limit
    ; http://php.net/mysql.connect-timeout
    mysql.connect_timeout = 60
    ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
    ; SQL-Errors will be displayed.
    ; http://php.net/mysql.trace-mode
    mysql.trace_mode = Off
    [MySQLi]
    ; Maximum number of persistent links. -1 means no limit.
    ; http://php.net/mysqli.max-persistent
    mysqli.max_persistent = -1
    ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
    ; http://php.net/mysqli.allow_local_infile
    ;mysqli.allow_local_infile = On
    ; Allow or prevent persistent links.
    ; http://php.net/mysqli.allow-persistent
    mysqli.allow_persistent = On
    ; Maximum number of links. -1 means no limit.
    ; http://php.net/mysqli.max-links
    mysqli.max_links = -1
    ; If mysqlnd is used: Number of cache slots for the internal result set cache
    ; http://php.net/mysqli.cache_size
    mysqli.cache_size = 2000
    ; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
    ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
    ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
    ; at MYSQL_PORT.
    ; http://php.net/mysqli.default-port
    mysqli.default_port = 3306
    ; Default socket name for local MySQL connects. If empty, uses the built-in
    ; MySQL defaults.
    ; http://php.net/mysqli.default-socket
    mysqli.default_socket =
    ; Default host for mysql_connect() (doesn't apply in safe mode).
    ; http://php.net/mysqli.default-host
    mysqli.default_host =
    ; Default user for mysql_connect() (doesn't apply in safe mode).
    ; http://php.net/mysqli.default-user
    mysqli.default_user =
    ; Default password for mysqli_connect() (doesn't apply in safe mode).
    ; Note that this is generally a *bad* idea to store passwords in this file.
    ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
    ; and reveal this password! And of course, any users with read access to this
    ; file will be able to reveal the password as well.
    ; http://php.net/mysqli.default-pw
    mysqli.default_pw =
    ; Allow or prevent reconnect
    mysqli.reconnect = Off
    [mysqlnd]
    ; Enable / Disable collection of general statistics by mysqlnd which can be
    ; used to tune and monitor MySQL operations.
    ; http://php.net/mysqlnd.collect_statistics
    mysqlnd.collect_statistics = On
    ; Enable / Disable collection of memory usage statistics by mysqlnd which can be
    ; used to tune and monitor MySQL operations.
    ; http://php.net/mysqlnd.collect_memory_statistics
    mysqlnd.collect_memory_statistics = Off
    ; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
    ; http://php.net/mysqlnd.net_cmd_buffer_size
    ;mysqlnd.net_cmd_buffer_size = 2048
    ; Size of a pre-allocated buffer used for reading data sent by the server in
    ; bytes.
    ; http://php.net/mysqlnd.net_read_buffer_size
    ;mysqlnd.net_read_buffer_size = 32768
    [OCI8]
    ; Connection: Enables privileged connections using external
    ; credentials (OCI_SYSOPER, OCI_SYSDBA)
    ; http://php.net/oci8.privileged-connect
    ;oci8.privileged_connect = Off
    ; Connection: The maximum number of persistent OCI8 connections per
    ; process. Using -1 means no limit.
    ; http://php.net/oci8.max-persistent
    ;oci8.max_persistent = -1
    ; Connection: The maximum number of seconds a process is allowed to
    ; maintain an idle persistent connection. Using -1 means idle
    ; persistent connections will be maintained forever.
    ; http://php.net/oci8.persistent-timeout
    ;oci8.persistent_timeout = -1
    ; Connection: The number of seconds that must pass before issuing a
    ; ping during oci_pconnect() to check the connection validity. When
    ; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
    ; pings completely.
    ; http://php.net/oci8.ping-interval
    ;oci8.ping_interval = 60
    ; Connection: Set this to a user chosen connection class to be used
    ; for all pooled server requests with Oracle 11g Database Resident
    ; Connection Pooling (DRCP). To use DRCP, this value should be set to
    ; the same string for all web servers running the same application,
    ; the database pool must be configured, and the connection string must
    ; specify to use a pooled server.
    ;oci8.connection_class =
    ; High Availability: Using On lets PHP receive Fast Application
    ; Notification (FAN) events generated when a database node fails. The
    ; database must also be configured to post FAN events.
    ;oci8.events = Off
    ; Tuning: This option enables statement

  • Need help to Configure Cisco ACE 4710 Cluster Deployment

    Dear Experts,
    I'm newbie for Cisco ACE 4710, and still I'm in learning stage. Meanwhile I got chance at my work place to deploy a Cisco ACE 4710 cluster which should load balance the traffic between  two Application Servers based on HTTP and HTTPS traffic. So I was looking for good deployment guide in Cisco SBA knowledge base then finall found this guide.
    http://www.cisco.com/en/US/docs/solutions/SBA/February2013/Cisco_SBA_DC_AdvancedServer-LoadBalancingDeploymentGuide-Feb2013.pdf
    This guide totally fine with my required deployment model. I have same deployment environment as this guide contains with ACE cluster that connects to two Cisco 3750X (Stack) switches. But I have some confusion places in this guide
    This guide follow the "One-armed mode" as a deployment method. But when I go through it further I have noticed that they have configured server VLAN as a 10.4.49.0/24 (all servers reside in it) and Client side VIP also in same VLAN which is 10.4.49.100/24 (even NAT pool also).
    My confusion is, as I have learned about Cisco ACE 4710 one-armed mode deployment method, it should has two VLAN segments, one for Client side which client request come and hit the VIP and then second one for Server side. which means besically two VLANs. So please be kind enough to go through above document then tell me where is wrong, what shoud I need to do for the best. Please this is an urgent, so need your help quickly.
    Thanks....!
    -Amal-

    Dear Kanwal,
    I need quick help for you. Following are the Application LB requirements which I received from my clinet side.
    Following detail required for configuring Oracle EBS Apps tier on HA:
    LBR IP and Name required to configure EBS APPS Tier (i.e, ap1ebs & ap2ebs nodes)
    Suggested IP and Name for LBR:
    IP : 172.25.45.x [should be on same 172.25.45 subnet of ap1ebs & ap2ebs nodes]
    ebiz.xxxx.lk [on port 80 for http protocol accessibility]
    This LBR IP & name must be resolve and respond on DNS network
    Server Farm detail for LBR Setup
    Following detail will be use for configuring the LBR:
    LBR IP and Name :
    IP : 172.25.45.x [should be on same 172.25.45 subnet of ap1ebs & ap2ebs nodes]
    ebiz.xxxx.lk [on port 80 for http protocol accessibility]
    This LBR IP & name must be resolve and respond on DNS network
    Server Farm Detail for LBR setup:
    Server 1 (EBS App1 Node, ap1ebs):
    IP : 172.25.45.19
    Server Name: ap1ebs.xxxx.lk [ap1ebs hostname is an example, actual hostname will be use]
    Protocol: http
    Port: 8000
    Server 2 (EBS App2 Node, ap2ebs):
    IP : 172.25.45.20
    Server Name: ap2ebs.xxxx.lk [ap2ebs hostname is an example, actual hostname will be use]
    Protocol: http
    Port: 8000
    Since my client needs to access URL ebiz.xxxx.lk which should be resolved by IP 172.25.45.21 (virtual IP) via http (80) before they deploy the app on the two servers I just ran web service on both servers (Linux) and was trying to access http://172.25.45.21 it was working fine and gave me index.html page. Now after my client has deployed the application then when he tries to access the page http://172.25.45.21 he cannot see his main login page. But still my testing web servers are there on both servers when I type http://172.25.45.21 it will get index.html page, but not my client web login page. What can I do for this ?
    Following are my latest config :
    probe http Get-Method
      description Check to url access /OA_HTML/OAInfo.jsp
      interval 10
      faildetect 2
      passdetect interval 30
      request method get url /OA_HTML/OAInfo.jsp
      expect status 200 200
    probe udp http-8000-iRDMI
      description IRDMI (HTTP - 8000)
      port 8000
    probe http http-probe
      description HTTP Probes
      interval 10
      faildetect 2
      passdetect interval 30
      passdetect count 2
      request method get url /index.html
      expect status 200 200
    probe https https-probe
      description HTTPS traffic
      interval 10
      faildetect 2
      passdetect interval 30
      passdetect count 2
      ssl version all
      request method get url /index.html
    probe icmp icmp-probe
      description ICMP PROBE FOR TO CHECK ICMP SERVICE
    rserver host ebsapp1
      description ebsapp1.xxxx.lk
      ip address 172.25.45.19
      conn-limit max 4000000 min 4000000
      probe icmp-probe
      probe http-probe
      inservice
    rserver host ebsapp2
      description ebsapp2.xxxx.lk
      ip address 172.25.45.20
      conn-limit max 4000000 min 4000000
      probe icmp-probe
      probe http-probe
      inservice
    serverfarm host ebsppsvrfarm
      description ebsapp server farm
      failaction purge
      predictor response app-req-to-resp samples 4
      probe http-probe
      probe icmp-probe
      inband-health check log 5 reset 500
      retcode 404 404 check log 1 reset 3
      rserver ebsapp1 80
        conn-limit max 4000000 min 4000000
        probe icmp-probe
        inservice
      rserver ebsapp2 80
        conn-limit max 4000000 min 4000000
        probe icmp-probe
        inservice
    sticky http-cookie jsessionid HTTP-COOKIE
      cookie insert browser-expire
      replicate sticky
      serverfarm ebsppsvrfarm
    class-map type http loadbalance match-any default-compression-exclusion-mime-type
      description DM generated classmap for default LB compression exclusion mime types.
      2 match http url .*gif
      3 match http url .*css
      4 match http url .*js
      5 match http url .*class
      6 match http url .*jar
      7 match http url .*cab
      8 match http url .*txt
      9 match http url .*ps
      10 match http url .*vbs
      11 match http url .*xsl
      12 match http url .*xml
      13 match http url .*pdf
      14 match http url .*swf
      15 match http url .*jpg
      16 match http url .*jpeg
      17 match http url .*jpe
      18 match http url .*png
    class-map match-all ebsapp-vip
      2 match virtual-address 172.25.45.21 tcp eq www
    class-map type management match-any remote_access
      2 match protocol xml-https any
      3 match protocol icmp any
      4 match protocol telnet any
      5 match protocol ssh any
      6 match protocol http any
      7 match protocol https any
      8 match protocol snmp any
    policy-map type management first-match remote_mgmt_allow_policy
      class remote_access
        permit
    policy-map type loadbalance first-match ebsapp-vip-l7slb
      class default-compression-exclusion-mime-type
        serverfarm ebsppsvrfarm
      class class-default
        compress default-method deflate
        sticky-serverfarm HTTP-COOKIE
    policy-map multi-match int455
      class ebsapp-vip
        loadbalance vip inservice
        loadbalance policy ebsapp-vip-l7slb
        loadbalance vip icmp-reply active
        nat dynamic 1 vlan 455
    interface vlan 455
      ip address 172.25.45.36 255.255.255.0
      peer ip address 172.25.45.35 255.255.255.0
      access-group input ALL
      nat-pool 1 172.25.45.22 172.25.45.22 netmask 255.255.255.0 pat
      service-policy input remote_mgmt_allow_policy
      service-policy input int455
      no shutdown
    ft interface vlan 999
      ip address 10.1.1.1 255.255.255.0
      peer ip address 10.1.1.2 255.255.255.0
      no shutdown
    ft peer 1
      heartbeat interval 300
      heartbeat count 10
      ft-interface vlan 999
    ft group 1
      peer 1
      no preempt
      priority 110
      associate-context Admin
      inservice
    ip route 0.0.0.0 0.0.0.0 172.25.45.1
    Hope you will reply me soon
    Thanks....!
    -Amal-

  • [SAPNW7.0ABAPTrialSP12] error when installing - please help

    Hello all,
    I'm a complete noob in SAP.
    I tried to install SAPNW7.0ABAPTrialSP12 in a separated partition. but I failed.. I have 3 partition, C (windows), E (data), G (SAP). And put all installer in it.. this drive also my sap install folder.
    there is an error when the install progress reach 76% after removing max db. after that.. I only got 2  folder Temp and sapdb with some folders with couple hundreds KB .exe in it.
    I've succesfully intalls the SAPGUI anda loopback adapter thou.
    my computer spec is:
    Windows XP Profesional N Version 2002 SP2
    jre-6-windows-i586
    I don't understand why the installer uninstall all of the program after installation...
    please help me to solve this..
    thanks in advance.
    Regards
    please find the log eror and the maxdb uninstall log which is created after the installation finish (wasn't there when before the installation)
    log.txt
    (Jun 17, 2008 8:39:53 PM), Install, com.installshield.product.actions.DeleteDirectory, err, An error occurred and product installation failed.  Look at the log file G:\sapdb\NSP\log.txt for details.
    (Jun 17, 2008 8:39:53 PM), Install, com.installshield.product.actions.DeleteDirectory, err, ProductException: (error code = 601; message="err"; additional data = [Unable to delete G:\sapdb\NSP\_tempLocation : ServiceException: (error code = -30020; message = "The directory is not empty.
    (145)"; severity = 0)])
    STACK_TRACE: 24
    ProductException: (error code = 601; message="err"; additional data = [Unable to delete G:\sapdb\NSP\_tempLocation : ServiceException: (error code = -30020; message = "The directory is not empty.
    (145)"; severity = 0)])
         at com.installshield.product.actions.DeleteDirectory.deleteDirectory(Unknown Source)
         at com.installshield.product.actions.DeleteDirectory.install(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installProductAction(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.getResultForProductAction(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitComponent(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitInstallableComponents(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitProductBeans(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.install(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installProduct(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(Unknown Source)
         at com.installshield.wizard.service.AbstractService.invokeImpl(Unknown Source)
         at com.installshield.product.service.product.GenericProductService.installProduct(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installAssembly(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.access$900(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$Installer.execute(Unknown Source)
         at com.installshield.wizard.service.AsynchronousOperation.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    (Jun 17, 2008 8:39:53 PM), Install, com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct, err, An error occurred and product uninstallation failed.  Look at the log file G:\sapdb\NSP\log.txt for details.
    (Jun 17, 2008 8:39:53 PM), Install, com.installshield.product.actions.CreateDirectory, err, ProductException: (error code = 601; message="err"; additional data = [Can not delete : G:\sapdb\NSP\_tempLocation : ServiceException: (error code = -30020; message = "Access is denied.
    (5)"; severity = 0)])
    STACK_TRACE: 23
    ProductException: (error code = 601; message="err"; additional data = [Can not delete : G:\sapdb\NSP\_tempLocation : ServiceException: (error code = -30020; message = "Access is denied.
    (5)"; severity = 0)])
         at com.installshield.product.actions.CreateDirectory.uninstall(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.uninstallProductAction(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.processActionsFailed(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitComponent(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitInstallableComponents(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitProductBeans(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.install(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installProduct(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(Unknown Source)
         at com.installshield.wizard.service.AbstractService.invokeImpl(Unknown Source)
         at com.installshield.product.service.product.GenericProductService.installProduct(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installAssembly(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.access$900(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$Installer.execute(Unknown Source)
         at com.installshield.wizard.service.AsynchronousOperation.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    MaxDBUninstall_install-16.06.2008-23.12.log
    INSTALLER_INFO: Version = 7.6.02 Build 014-123-152-175
    INSTALLER_INFO: Changelist = 152175
    INSTALLER_INFO: MakeId = 240446
    INSTALLER_INFO: Type = kit
    SYS_INFO: Host name = NEOXAVIER
    SYS_INFO: System = Windows
    SYS_INFO: Architecture = I386
    SYS_INFO: Version = NT 5.1
    SYS_INFO: Subversion = Service Pack 2
    CALL: sdbuninst -all
    MSG: InstallRegistry: space check ok: 25312068 kb on G: (30668052 kb total) available
    MSG: install registry successfully locked
    MSG: read 10 PACKAGES
    MSG: net registry size = 127934 bytes
    MSG: InstallRegistry: reserved 1024 kb disk space
    MSG: no installation data to migrate
    STDOUT:
    uninstall following package(s):
    STDOUT: Database Kernel   g:/sapdb/nsp/db        7.6.02.14   32 bit
    STDOUT: Server Utilities  g:/sapdb/programs      7.6.02.14   32 bit
    STDOUT: SAP Utilities     g:/sapdb/programs      7.6.02.14   32 bit
    STDOUT: JDBC              g:/sapdb/programs      7.6.03.02        
    STDOUT: Messages          g:/sapdb/programs      MSG 0.5028       
    STDOUT: Webtools          g:/sapdb/programs/web  7.6.00.32   32 bit
    STDOUT: ODBC              g:/sapdb/programs      7.6.02.14   32 bit
    STDOUT: SQLDBC 76         g:/sapdb/programs      7.6.02.14   32 bit
    STDOUT: SQLDBC            g:/sapdb/programs      7.6.02.14   32 bit
    STDOUT: Base              g:/sapdb/programs      7.6.02.14   32 bit
    STDOUT:
    MSG: set function reference "register" in package Database Kernel
    MSG: set function reference "unregister" in package Database Kernel
    MSG: set function reference "preuninstall" in package Database Kernel
    MSG: set function reference "postuninstall" in package Database Kernel
    MSG: set function reference "verify" in package Database Kernel
    WRN: InstallRegistry::removeInstanceData(): no data for instance ""
    MSG: set function reference "register" in package Server Utilities
    MSG: set function reference "unregister" in package Server Utilities
    MSG: set function reference "preuninstall" in package Server Utilities
    MSG: set function reference "postuninstall" in package Server Utilities
    MSG: no function "verify" in package Server Utilities
    MSG: set function reference "register" in package SAP Utilities
    MSG: set function reference "unregister" in package SAP Utilities
    MSG: set function reference "preuninstall" in package SAP Utilities
    MSG: set function reference "postuninstall" in package SAP Utilities
    MSG: no function "verify" in package SAP Utilities
    MSG: no function "register" in package JDBC
    MSG: no function "unregister" in package JDBC
    MSG: no function "preuninstall" in package JDBC
    MSG: no function "postuninstall" in package JDBC
    MSG: no function "verify" in package JDBC
    MSG: set function reference "register" in package Messages
    MSG: set function reference "unregister" in package Messages
    MSG: set function reference "preuninstall" in package Messages
    MSG: set function reference "postuninstall" in package Messages
    MSG: no function "verify" in package Messages
    MSG: set function reference "register" in package Webtools
    MSG: set function reference "unregister" in package Webtools
    MSG: set function reference "preuninstall" in package Webtools
    MSG: set function reference "postuninstall" in package Webtools
    MSG: no function "verify" in package Webtools
    MSG: set function reference "register" in package ODBC
    MSG: set function reference "unregister" in package ODBC
    MSG: set function reference "preuninstall" in package ODBC
    MSG: set function reference "postuninstall" in package ODBC
    MSG: no function "verify" in package ODBC
    MSG: set function reference "register" in package SQLDBC 76
    MSG: set function reference "unregister" in package SQLDBC 76
    MSG: set function reference "preuninstall" in package SQLDBC 76
    MSG: set function reference "postuninstall" in package SQLDBC 76
    MSG: no function "verify" in package SQLDBC 76
    MSG: set function reference "register" in package SQLDBC
    MSG: set function reference "unregister" in package SQLDBC
    MSG: set function reference "preuninstall" in package SQLDBC
    MSG: set function reference "postuninstall" in package SQLDBC
    MSG: no function "verify" in package SQLDBC
    MSG: set function reference "register" in package Base
    MSG: set function reference "unregister" in package Base
    MSG: set function reference "preuninstall" in package Base
    MSG: set function reference "postuninstall" in package Base
    MSG: set function reference "verify" in package Base
    MSG: packagedata of package Database Kernel changed
    MSG: writing 10 packages
    MSG: net install registry size = 127934 bytes
    MSG: wrote install registry (148298 bytes)
    STDOUT: unregister Database Kernel 7.6.02.14
    SYS: "G:\sapdb\programs\pgm\dbmcli.exe" -R "G:\sapdb\NSP\db" inst_unreg: OK
    file "g:/sapdb/nsp/db/doc/FirstSteps/ODBC/HowToODBC.html" deleted
    file "g:/sapdb/nsp/db/lib/python2.3/_socket.pyd" deleted
    file "g:/sapdb/nsp/db/pgm/dbmsrv.exe" deleted
    file "g:/sapdb/nsp/db/env/INFO.py" deleted
    file "g:/sapdb/nsp/db/pgm/diagnose.exe" deleted
    file "g:/sapdb/nsp/db/bin/xsqlro.exe" deleted
    file "g:/sapdb/nsp/db/misc/create_demo_db.cmd" deleted
    file "g:/sapdb/nsp/db/lib/python2.3/sdb/__init__.py" deleted
    file "g:/sapdb/nsp/db/bin/xci.exe" deleted
    file "g:/sapdb/nsp/db/bin/xtracesort.exe" deleted
    file "g:/sapdb/nsp/db/bin/x_diagnose.exe" deleted
    file "g:/sapdb/nsp/db/pgm/Tools_WinEvtLog.dll" deleted
    file "g:/sapdb/nsp/db/sap/grantxdb.dbm" deleted
    file "g:/sapdb/nsp/db/pgm/cons.exe" deleted
    file "g:/sapdb/nsp/db/demo/tutoriallib.py" deleted
    file "g:/sapdb/nsp/db/sap/sphsapdb.dll" deleted
    file "g:/sapdb/nsp/db/demo/HOTEL.py" deleted
    file "g:/sapdb/nsp/db/env/cserv.pcf" deleted
    file "g:/sapdb/nsp/db/pgm/service.exe" deleted
    file "g:/sapdb/nsp/db/lib/python2.3/_sre.pyd" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/Python/HowToPython.html" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/ODBC/HelloMaxDB.c" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/Java/DemodbData.java" deleted
    file "g:/sapdb/nsp/db/pgm/dbghelp.dll" deleted
    file "g:/sapdb/nsp/db/sap/saprfc.ini" deleted
    file "g:/sapdb/nsp/db/cluster/strt_clu.exe" deleted
    file "g:/sapdb/nsp/db/pgm/tracesort.exe" deleted
    file "g:/sapdb/nsp/db/cluster/SAPDBMSCSMan.exe" deleted
    file "g:/sapdb/nsp/db/bin/sqlwhat.exe" deleted
    file "g:/sapdb/nsp/db/lib/python2.3/pyexpat.pyd" deleted
    file "g:/sapdb/nsp/db/pgm/libSQLDBC_C.dll" deleted
    file "g:/sapdb/nsp/db/pgm/python23.dll" deleted
    file "g:/sapdb/nsp/db/env/SQLDBC.py" deleted
    file "g:/sapdb/nsp/db/cluster/SAPDBMSCSRes.dll" deleted
    file "g:/sapdb/nsp/db/cluster/stop_clu.exe" deleted
    file "g:/sapdb/nsp/db/pgm/sqlinst.dll" deleted
    file "g:/sapdb/nsp/db/pgm/StudioUtil.dll" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/Python/HelloMaxDB.py" deleted
    file "g:/sapdb/nsp/db/sap/sphsapdb.lst" deleted
    file "g:/sapdb/nsp/db/pgm/cr_param.exe" deleted
    file "g:/sapdb/nsp/db/bin/sqlrun.dll" deleted
    file "g:/sapdb/nsp/db/bin/backint.exe" deleted
    file "g:/sapdb/nsp/db/pgm/libSQLDBC.dll" deleted
    file "g:/sapdb/nsp/db/bin/dbmsrvctl.exe" deleted
    file "g:/sapdb/nsp/db/env/UDE.py" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/Java/DemodbData.class" deleted
    file "g:/sapdb/nsp/db/sap/lcinit.bat" deleted
    file "g:/sapdb/nsp/db/env/lsystab.py" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/Perl/StateMaxDB.pl" deleted
    file "g:/sapdb/nsp/db/lib/python2.3/zlib.pyd" deleted
    file "g:/sapdb/nsp/db/pgm/python23.zip" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/Java/HelloMaxDB.class" deleted
    file "g:/sapdb/nsp/db/env/installib.py" deleted
    file "g:/sapdb/nsp/db/pgm/renparam.exe" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/Python/StateMaxDB.py" deleted
    file "g:/sapdb/nsp/db/env/TRIGGER.py" deleted
    file "g:/sapdb/nsp/db/pgm/libhsscopy.dll" deleted
    file "g:/sapdb/nsp/db/pgm/systemrc.exe" deleted
    file "g:/sapdb/nsp/db/pgm/dbmunreg.exe" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/ODBC/Makefile" deleted
    file "g:/sapdb/nsp/db/pgm/stop.exe" deleted
    file "g:/sapdb/nsp/db/lib/python2.3/sdb/sql.pyd" deleted
    file "g:/sapdb/nsp/db/env/APPS.py" deleted
    file "g:/sapdb/nsp/db/env/kernprot.use" deleted
    file "g:/sapdb/nsp/db/pgm/liboms.dll" deleted
    file "g:/sapdb/nsp/db/cluster/service_clu.exe" deleted
    file "g:/sapdb/nsp/db/env/ORADDSYN.py" deleted
    file "g:/sapdb/nsp/db/bin/xsql.exe" deleted
    file "g:/sapdb/nsp/db/env/SYSINFOCOM.py" deleted
    file "g:/sapdb/nsp/db/cluster/SAPDBMSCSEx.dll" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/SQLDBC/HelloMaxDB.cpp" deleted
    file "g:/sapdb/nsp/db/env/CNR3DATA.py" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/index.html" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/Java/HowToJava.html" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/Perl/demodbData.pm" deleted
    file "g:/sapdb/nsp/db/bin/pipe2file.exe" deleted
    file "g:/sapdb/nsp/db/bin/dbmevthndl_winlog.exe" deleted
    file "g:/sapdb/nsp/db/demo/ltutorial.py" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/Python/HelloMaxDB-API.py" deleted
    file "g:/sapdb/nsp/db/bin/xservice.exe" deleted
    file "g:/sapdb/nsp/db/env/REPOSITORY.py" deleted
    file "g:/sapdb/nsp/db/cluster/serv_clu.exe" deleted
    file "g:/sapdb/nsp/db/lib/python2.3/optlib.py" deleted
    file "g:/sapdb/nsp/db/env/ORADDCOM.py" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/SQLDBC/Makefile" deleted
    file "g:/sapdb/nsp/db/pgm/dbmsrvscd.exe" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/Perl/HowToPerl.html" deleted
    file "g:/sapdb/nsp/db/pgm/TableDefC.dll" deleted
    file "g:/sapdb/nsp/db/cluster/dbmsrv_clu.exe" deleted
    file "g:/sapdb/nsp/db/pgm/sysrc.exe" deleted
    file "g:/sapdb/nsp/db/bin/xoldci.exe" deleted
    file "g:/sapdb/nsp/db/pgm/kernel.exe" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/Java/StateMaxDB.class" deleted
    file "g:/sapdb/nsp/db/pgm/slowci.exe" deleted
    file "g:/sapdb/nsp/db/env/SAPDBLOADER.py" deleted
    file "g:/sapdb/nsp/db/bin/sqlver.exe" deleted
    file "g:/sapdb/nsp/db/env/general.use" deleted
    file "g:/sapdb/nsp/db/sap/dbpinstall.lst" deleted
    file "g:/sapdb/nsp/db/pgm/dbpinstall.dll" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/Java/StateMaxDB.java" deleted
    file "g:/sapdb/nsp/db/env/en/DBM.en" deleted
    file "g:/sapdb/nsp/db/sap/lvcbench.dll" deleted
    file "g:/sapdb/nsp/db/env/lapps.py" deleted
    file "g:/sapdb/nsp/db/env/getpackages.py" deleted
    file "g:/sapdb/nsp/db/pgm/lserver.exe" deleted
    file "g:/sapdb/nsp/db/env/WA.py" deleted
    file "g:/sapdb/nsp/db/lib/python2.3/sdb/dbm.pyd" deleted
    file "g:/sapdb/nsp/db/misc/drop_demo_db.cmd" deleted
    file "g:/sapdb/nsp/db/bin/ireport.py" deleted
    file "g:/sapdb/nsp/db/lib/python2.3/sdb/dbapi.py" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/Java/HelloMaxDB.java" deleted
    file "g:/sapdb/nsp/db/env/ORADDV.py" deleted
    cannot delete file "g:/sapdb/nsp/db/pgm/pysapdb.exe": Permission denied
    file "g:/sapdb/nsp/db/doc/FirstSteps/maxdbenv.cmd" deleted
    file "g:/sapdb/nsp/db/env/GARBAGE.py" deleted
    file "g:/sapdb/nsp/db/pgm/libsqlcls.dll" deleted
    file "g:/sapdb/nsp/db/bin/xkernprot.exe" deleted
    file "g:/sapdb/nsp/db/env/SYSINFO.py" deleted
    file "g:/sapdb/nsp/db/env/XDDCOM.py" deleted
    file "g:/sapdb/nsp/db/bin/sdbfill.exe" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/SQLDBC/HowToSQLDBC.html" deleted
    file "g:/sapdb/nsp/db/env/XDD.py" deleted
    file "g:/sapdb/nsp/db/lib/python2.3/sdb/loader.pyd" deleted
    file "g:/sapdb/nsp/db/env/ODBC.py" deleted
    file "g:/sapdb/nsp/db/pgm/backup.exe" deleted
    file "g:/sapdb/nsp/db/env/SYSDBA.py" deleted
    file "g:/sapdb/nsp/db/pgm/dbmshm.exe" deleted
    file "g:/sapdb/nsp/db/env/PRECOM.py" deleted
    file "g:/sapdb/nsp/db/env/ORADD.py" deleted
    file "g:/sapdb/nsp/db/env/CNR3TAB.py" deleted
    file "g:/sapdb/nsp/db/cluster/sapdbmscsman.dll" deleted
    file "g:/sapdb/nsp/db/pgm/strt.exe" deleted
    file "g:/sapdb/nsp/db/env/SHOWCMD.py" deleted
    file "g:/sapdb/nsp/db/env/DBANA.py" deleted
    file "g:/sapdb/nsp/db/env/SYSDBACOM.py" deleted
    file "g:/sapdb/nsp/db/pgm/dbmstop.exe" deleted
    file "g:/sapdb/nsp/db/doc/FirstSteps/Python/demodbData.py" deleted
    file "g:/sapdb/nsp/db/bin/dbmevthndl_display.exe" deleted
    file "g:/sapdb/nsp/db/env/DBMVIEWS.py" deleted
    file "g:/sapdb/nsp/db/pgm/dbmstart.exe" deleted
    file "g:/sapdb/nsp/db/env/JDBC.py" deleted
    file "g:/sapdb/nsp/db/pgm/dbmreg.exe" deleted
    file "g:/sapdb/nsp/db/pgm/sqlmsg.dll" deleted
    cannot remove directory "g:/sapdb/nsp/db/bin": directory is not empty
    directory "g:/sapdb/nsp/db/cluster" removed
    directory "g:/sapdb/nsp/db/demo" removed
    directory "g:/sapdb/nsp/db/doc/FirstSteps/Java" removed
    directory "g:/sapdb/nsp/db/doc/FirstSteps/ODBC" removed
    directory "g:/sapdb/nsp/db/doc/FirstSteps/Perl" removed
    directory "g:/sapdb/nsp/db/doc/FirstSteps/Python" removed
    directory "g:/sapdb/nsp/db/doc/FirstSteps/SQLDBC" removed
    directory "g:/sapdb/nsp/db/doc/FirstSteps" removed
    directory "g:/sapdb/nsp/db/doc" removed
    directory "g:/sapdb/nsp/db/env/en" removed
    directory "g:/sapdb/nsp/db/env" removed
    directory "g:/sapdb/nsp/db/lib/python2.3/sdb" removed
    directory "g:/sapdb/nsp/db/lib/python2.3" removed
    directory "g:/sapdb/nsp/db/lib" removed
    directory "g:/sapdb/nsp/db/misc" removed
    directory "g:/sapdb/nsp/db/pgm" removed
    directory "g:/sapdb/nsp/db/sap" removed
    cannot remove directory "g:/sapdb/nsp/db": directory is not empty
    MSG: packagedata of package Server Utilities changed
    MSG: writing 9 packages
    MSG: net install registry size = 83346 bytes
    MSG: wrote install registry (98214 bytes)
    SYS: "g:\sapdb\programs\bin\x_server.exe" stop
    SYS: "g:\sapdb\programs\bin\x_server.exe" remove: 19710 INFO: Service 'XServer' removed successfully
    file "g:/sapdb/programs/bin/x_wiz.exe" deleted
    file "g:/sapdb/programs/bin/x_show.exe" deleted
    file "g:/sapdb/programs/env/serv.use" deleted
    file "g:/sapdb/programs/env/xstop.use" deleted
    file "g:/sapdb/programs/bin/x_wizard.exe" deleted
    file "g:/sapdb/programs/bin/x_wizstop.exe" deleted
    file "g:/sapdb/programs/bin/x_cons.exe" deleted
    file "g:/sapdb/programs/bin/sqlrun.dll" deleted
    file "g:/sapdb/programs/etc/VERSIONS" deleted
    file "g:/sapdb/programs/bin/xbackup.exe" deleted
    file "g:/sapdb/programs/bin/x_stop.exe" deleted
    file "g:/sapdb/programs/bin/sysmon.exe" deleted
    file "g:/sapdb/programs/bin/x_start.exe" deleted
    file "g:/sapdb/programs/bin/xinstinfo.exe" deleted
    file "g:/sapdb/programs/bin/x_wiztrc.exe" deleted
    file "g:/sapdb/programs/bin/x_analys.exe" deleted
    file "g:/sapdb/programs/bin/xpu.exe" deleted
    file "g:/sapdb/programs/env/xstart.use" deleted
    file "g:/sapdb/programs/pgm/show.exe" deleted
    file "g:/sapdb/programs/bin/sdbinfo.exe" deleted
    cannot remove directory "g:/sapdb/programs/bin": directory is not empty
    directory "g:/sapdb/programs/env" removed
    directory "g:/sapdb/programs/etc" removed
    cannot remove directory "g:/sapdb/programs/incl": directory is not empty
    cannot remove directory "g:/sapdb/programs/install": directory is not empty
    cannot remove directory "g:/sapdb/programs/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/msg": directory is not empty
    cannot remove directory "g:/sapdb/programs/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/runtime/7602/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/runtime/7602": directory is not empty
    cannot remove directory "g:/sapdb/programs/runtime/jar": directory is not empty
    cannot remove directory "g:/sapdb/programs/runtime": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/fastload/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/fastload": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc/incl": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk": directory is not empty
    cannot remove directory "g:/sapdb/programs/Support/Mapfiles": directory is not empty
    cannot remove directory "g:/sapdb/programs/Support": directory is not empty
    cannot remove directory "g:/sapdb/programs/symbols": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/config": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/HTML": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/Images": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/JavaScripts": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/Styles": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/symbols": directory is not empty
    cannot remove directory "g:/sapdb/programs/web": directory is not empty
    cannot remove directory "g:/sapdb/programs": directory is not empty
    cannot remove directory "g:/sapdb/data/config/install": directory is not empty
    cannot remove directory "g:/sapdb/data/config": directory is not empty
    directory "g:/sapdb/data/wrk/.M760214/dbahist" removed
    directory "g:/sapdb/data/wrk/.M760214" removed
    cannot remove directory "g:/sapdb/data/wrk": directory is not empty
    cannot remove directory "g:/sapdb/data": directory is not empty
    directory "g:/sapdb/NSP/data" removed
    cannot remove directory "g:/sapdb/NSP/db/bin": directory is not empty
    cannot remove directory "g:/sapdb/NSP/db": directory is not empty
    directory "g:/sapdb/NSP/log" removed
    cannot remove directory "g:/sapdb/NSP/_jvm/bin/client": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/bin": directory is not empty
    directory "g:/sapdb/NSP/_jvm/lib/applet" removed
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/cmm": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/ext": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/fonts": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/i386": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/im": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/images/cursors": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/images": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/javaws": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/management": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/security": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Africa": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/America/Indiana": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/America/Kentucky": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/America/North_Dakota": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/America": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Antarctica": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Asia": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Atlantic": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Australia": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Etc": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Europe": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Indian": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Pacific": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_tempLocation": directory is not empty
    cannot remove directory "g:/sapdb/NSP": directory is not empty
    cannot remove directory "g:/sapdb/programs/bin": directory is not empty
    cannot remove directory "g:/sapdb/programs/incl": directory is not empty
    cannot remove directory "g:/sapdb/programs/install": directory is not empty
    cannot remove directory "g:/sapdb/programs/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/msg": directory is not empty
    cannot remove directory "g:/sapdb/programs/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/runtime/7602/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/runtime/7602": directory is not empty
    cannot remove directory "g:/sapdb/programs/runtime/jar": directory is not empty
    cannot remove directory "g:/sapdb/programs/runtime": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/fastload/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/fastload": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc/incl": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk": directory is not empty
    cannot remove directory "g:/sapdb/programs/Support/Mapfiles": directory is not empty
    cannot remove directory "g:/sapdb/programs/Support": directory is not empty
    cannot remove directory "g:/sapdb/programs/symbols": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/config": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/HTML": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/Images": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/JavaScripts": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/Styles": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/symbols": directory is not empty
    cannot remove directory "g:/sapdb/programs/web": directory is not empty
    cannot remove directory "g:/sapdb/programs": directory is not empty
    cannot remove directory "g:/sapdb": directory is not empty
    MSG: packagedata of package SAP Utilities changed
    MSG: writing 8 packages
    MSG: net install registry size = 76188 bytes
    MSG: wrote install registry (89805 bytes)
    file "g:/sapdb/programs/lib/librfc32u.dll" deleted
    file "g:/sapdb/programs/lib/libsapucum.dll" deleted
    file "g:/sapdb/programs/lib/libsapu16vc71.dll" deleted
    file "g:/sapdb/programs/Support/Mapfiles/dbmgetf.map" deleted
    file "g:/sapdb/programs/symbols/sapni.pdb" deleted
    file "g:/sapdb/programs/lib/icuin30.dll" deleted
    file "g:/sapdb/programs/pgm/dbmgetf.exe" deleted
    file "g:/sapdb/programs/pgm/sapni.dll" deleted
    file "g:/sapdb/programs/Support/Mapfiles/dbmrfc.map" deleted
    file "g:/sapdb/programs/Support/Mapfiles/sapni.map" deleted
    file "g:/sapdb/programs/lib/icuuc30.dll" deleted
    file "g:/sapdb/programs/bin/dbmrfc.exe" deleted
    file "g:/sapdb/programs/lib/icudt30.dll" deleted
    cannot remove directory "g:/sapdb/data/config/install": directory is not empty
    cannot remove directory "g:/sapdb/data/config": directory is not empty
    cannot remove directory "g:/sapdb/data/wrk": directory is not empty
    cannot remove directory "g:/sapdb/data": directory is not empty
    cannot remove directory "g:/sapdb/data/config/install": directory is not empty
    cannot remove directory "g:/sapdb/data/config": directory is not empty
    cannot remove directory "g:/sapdb/data/wrk": directory is not empty
    cannot remove directory "g:/sapdb/data": directory is not empty
    cannot remove directory "g:/sapdb/NSP/db/bin": directory is not empty
    cannot remove directory "g:/sapdb/NSP/db": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/bin/client": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/bin": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/cmm": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/ext": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/fonts": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/i386": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/im": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/images/cursors": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/images": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/javaws": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/management": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/security": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Africa": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/America/Indiana": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/America/Kentucky": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/America/North_Dakota": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/America": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Antarctica": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Asia": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Atlantic": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Australia": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Etc": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Europe": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Indian": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Pacific": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_tempLocation": directory is not empty
    cannot remove directory "g:/sapdb/NSP": directory is not empty
    cannot remove directory "g:/sapdb/programs/bin": directory is not empty
    cannot remove directory "g:/sapdb/programs/incl": directory is not empty
    cannot remove directory "g:/sapdb/programs/install": directory is not empty
    cannot remove directory "g:/sapdb/programs/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/msg": directory is not empty
    cannot remove directory "g:/sapdb/programs/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/runtime/7602/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/runtime/7602": directory is not empty
    cannot remove directory "g:/sapdb/programs/runtime/jar": directory is not empty
    cannot remove directory "g:/sapdb/programs/runtime": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/fastload/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/fastload": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc/incl": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk": directory is not empty
    directory "g:/sapdb/programs/Support/Mapfiles" removed
    directory "g:/sapdb/programs/Support" removed
    cannot remove directory "g:/sapdb/programs/symbols": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/config": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/HTML": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/Images": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/JavaScripts": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/Styles": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/symbols": directory is not empty
    cannot remove directory "g:/sapdb/programs/web": directory is not empty
    cannot remove directory "g:/sapdb/programs": directory is not empty
    cannot remove directory "g:/sapdb": directory is not empty
    cannot remove directory "g:/sapdb/programs/bin": directory is not empty
    cannot remove directory "g:/sapdb/programs/incl": directory is not empty
    cannot remove directory "g:/sapdb/programs/install": directory is not empty
    cannot remove directory "g:/sapdb/programs/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/msg": directory is not empty
    cannot remove directory "g:/sapdb/programs/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/runtime/7602/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/runtime/7602": directory is not empty
    cannot remove directory "g:/sapdb/programs/runtime/jar": directory is not empty
    cannot remove directory "g:/sapdb/programs/runtime": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/fastload/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/fastload": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc/incl": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk": directory is not empty
    cannot remove directory "g:/sapdb/programs/symbols": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/config": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/HTML": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/Images": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/JavaScripts": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/Styles": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/symbols": directory is not empty
    cannot remove directory "g:/sapdb/programs/web": directory is not empty
    cannot remove directory "g:/sapdb/programs": directory is not empty
    cannot remove directory "g:/sapdb/data/config/install": directory is not empty
    cannot remove directory "g:/sapdb/data/config": directory is not empty
    cannot remove directory "g:/sapdb/data/wrk": directory is not empty
    cannot remove directory "g:/sapdb/data": directory is not empty
    cannot remove directory "g:/sapdb/NSP/db/bin": directory is not empty
    cannot remove directory "g:/sapdb/NSP/db": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/bin/client": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/bin": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/cmm": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/ext": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/fonts": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/i386": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/im": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/images/cursors": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/images": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/javaws": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/management": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/security": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Africa": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/America/Indiana": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/America/Kentucky": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/America/North_Dakota": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/America": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Antarctica": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Asia": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Atlantic": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Australia": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Etc": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Europe": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Indian": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Pacific": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_tempLocation": directory is not empty
    cannot remove directory "g:/sapdb/NSP": directory is not empty
    cannot remove directory "g:/sapdb/programs/bin": directory is not empty
    cannot remove directory "g:/sapdb/programs/incl": directory is not empty
    cannot remove directory "g:/sapdb/programs/install": directory is not empty
    cannot remove directory "g:/sapdb/programs/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/msg": directory is not empty
    cannot remove directory "g:/sapdb/programs/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/runtime/7602/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/runtime/7602": directory is not empty
    cannot remove directory "g:/sapdb/programs/runtime/jar": directory is not empty
    cannot remove directory "g:/sapdb/programs/runtime": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/fastload/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/fastload": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc/incl": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk": directory is not empty
    cannot remove directory "g:/sapdb/programs/symbols": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/config": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/HTML": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/Images": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/JavaScripts": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/Styles": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/symbols": directory is not empty
    cannot remove directory "g:/sapdb/programs/web": directory is not empty
    cannot remove directory "g:/sapdb/programs": directory is not empty
    cannot remove directory "g:/sapdb": directory is not empty
    MSG: packagedata of package JDBC changed
    MSG: writing 7 packages
    MSG: net install registry size = 72603 bytes
    MSG: wrote install registry (85337 bytes)
    file "g:/sapdb/programs/runtime/7602/pgm/sapdbcbin.dll" deleted
    file "g:/sapdb/programs/runtime/jar/sapdbc.jar" deleted
    cannot remove directory "g:/sapdb/programs/bin": directory is not empty
    cannot remove directory "g:/sapdb/programs/incl": directory is not empty
    cannot remove directory "g:/sapdb/programs/install": directory is not empty
    cannot remove directory "g:/sapdb/programs/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/msg": directory is not empty
    cannot remove directory "g:/sapdb/programs/pgm": directory is not empty
    directory "g:/sapdb/programs/runtime/7602/pgm" removed
    directory "g:/sapdb/programs/runtime/7602" removed
    directory "g:/sapdb/programs/runtime/jar" removed
    directory "g:/sapdb/programs/runtime" removed
    cannot remove directory "g:/sapdb/programs/sdk/fastload/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/fastload": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc/incl": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk": directory is not empty
    cannot remove directory "g:/sapdb/programs/symbols": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/config": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/HTML": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/Images": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/JavaScripts": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/Styles": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/symbols": directory is not empty
    cannot remove directory "g:/sapdb/programs/web": directory is not empty
    cannot remove directory "g:/sapdb/programs": directory is not empty
    cannot remove directory "g:/sapdb/data/config/install": directory is not empty
    cannot remove directory "g:/sapdb/data/config": directory is not empty
    cannot remove directory "g:/sapdb/data/wrk": directory is not empty
    cannot remove directory "g:/sapdb/data": directory is not empty
    cannot remove directory "g:/sapdb/NSP/db/bin": directory is not empty
    cannot remove directory "g:/sapdb/NSP/db": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/bin/client": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/bin": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/cmm": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/ext": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/fonts": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/i386": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/im": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/images/cursors": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/images": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/javaws": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/management": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/security": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Africa": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/America/Indiana": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/America/Kentucky": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/America/North_Dakota": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/America": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Antarctica": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Asia": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Atlantic": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Australia": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Etc": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Europe": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Indian": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Pacific": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_tempLocation": directory is not empty
    cannot remove directory "g:/sapdb/NSP": directory is not empty
    cannot remove directory "g:/sapdb/programs/bin": directory is not empty
    cannot remove directory "g:/sapdb/programs/incl": directory is not empty
    cannot remove directory "g:/sapdb/programs/install": directory is not empty
    cannot remove directory "g:/sapdb/programs/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/msg": directory is not empty
    cannot remove directory "g:/sapdb/programs/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/fastload/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/fastload": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc/incl": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk": directory is not empty
    cannot remove directory "g:/sapdb/programs/symbols": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/config": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/HTML": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/Images": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/JavaScripts": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/Styles": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/symbols": directory is not empty
    cannot remove directory "g:/sapdb/programs/web": directory is not empty
    cannot remove directory "g:/sapdb/programs": directory is not empty
    cannot remove directory "g:/sapdb": directory is not empty
    MSG: packagedata of package Messages changed
    MSG: writing 6 packages
    MSG: net install registry size = 70005 bytes
    MSG: wrote install registry (82192 bytes)
    file "g:/sapdb/programs/msg/SDBMsg_Recovery.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_FileDir.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_Rst.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_BTree.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_Converter.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_OMS.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_DBMSrvOI.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_APO.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_Loader.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_RTEThread.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_ZZZTest.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_DBProc.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_DBProvider.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_ToolsCommonDC.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_ToolsCommonXML.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_Table.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_SAPDBMem.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_RTETask.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_DBMSrvBackTemplate.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_RTESys.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_RunTime.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_KernelCommon.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_RTEIO.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_Transaction.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_RTEMem.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_DBMCLI.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_DBMSrv.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_DBMScd.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_OPMSG.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_RTESec.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_SrvTasks.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_Data.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_QueryRewrite.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_Log.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_AccessPathOptimize.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_DIAGNOSE.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_Index.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_RTEConf.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_Admin.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_DBMLog.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_IOMan.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_Messages.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_Catalog.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_DataCache.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_Optimizer.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_Query.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_RTEComm.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_DBMSrvTest.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_KSQL.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_JoinPathOptimizer.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_LOCKS.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_SAPDBAlgo.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_Backup.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_RTEDiag.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_Savepoint.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_ToolsCommon.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_LiveCache.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_DBMEd.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_MultiVersionRead.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_ObjectContainer.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_SharedSQL.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_RTEDBState.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_SQLMan.xml" deleted
    file "g:/sapdb/programs/msg/SDBMsg_Join.xml" deleted
    cannot remove directory "g:/sapdb/programs/bin": directory is not empty
    cannot remove directory "g:/sapdb/programs/incl": directory is not empty
    cannot remove directory "g:/sapdb/programs/install": directory is not empty
    cannot remove directory "g:/sapdb/programs/lib": directory is not empty
    directory "g:/sapdb/programs/msg" removed
    cannot remove directory "g:/sapdb/programs/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/fastload/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/fastload": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc/incl": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk": directory is not empty
    cannot remove directory "g:/sapdb/programs/symbols": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/config": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/HTML": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/Images": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/JavaScripts": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/Styles": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/symbols": directory is not empty
    cannot remove directory "g:/sapdb/programs/web": directory is not empty
    cannot remove directory "g:/sapdb/programs": directory is not empty
    cannot remove directory "g:/sapdb/data/config/install": directory is not empty
    cannot remove directory "g:/sapdb/data/config": directory is not empty
    cannot remove directory "g:/sapdb/data/wrk": directory is not empty
    cannot remove directory "g:/sapdb/data": directory is not empty
    cannot remove directory "g:/sapdb/NSP/db/bin": directory is not empty
    cannot remove directory "g:/sapdb/NSP/db": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/bin/client": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/bin": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/cmm": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/ext": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/fonts": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/i386": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/im": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/images/cursors": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/images": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/javaws": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/management": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/security": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Africa": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/America/Indiana": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/America/Kentucky": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/America/North_Dakota": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/America": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Antarctica": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Asia": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Atlantic": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Australia": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Etc": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Europe": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Indian": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi/Pacific": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib/zi": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm/lib": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_jvm": directory is not empty
    cannot remove directory "g:/sapdb/NSP/_tempLocation": directory is not empty
    cannot remove directory "g:/sapdb/NSP": directory is not empty
    cannot remove directory "g:/sapdb/programs/bin": directory is not empty
    cannot remove directory "g:/sapdb/programs/incl": directory is not empty
    cannot remove directory "g:/sapdb/programs/install": directory is not empty
    cannot remove directory "g:/sapdb/programs/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/fastload/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/fastload": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc/incl": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc/lib": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk/sqldbc": directory is not empty
    cannot remove directory "g:/sapdb/programs/sdk": directory is not empty
    cannot remove directory "g:/sapdb/programs/symbols": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/config": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/HTML": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/Images": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/JavaScripts": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot/Styles": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents/WARoot": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/Documents": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/pgm": directory is not empty
    cannot remove directory "g:/sapdb/programs/web/symbols": directory is not empty
    cannot remove directory "g:/sapdb/programs/web": directory is not empty
    cannot remove directory "g:/sapdb/programs": directory is not empty
    cannot remove directory "g:/sapdb": directory is not empty
    MSG: packagedata of package Webtools changed
    MSG: writing 5 packages
    MSG: net install registry size = 64488 bytes
    MSG: wrote install registry (75243 bytes)
    SYS: wahttp -u: SAP DB WWW removed.
    file "g:/sapdb/programs/web/Documents/WARoot/Images/xml_taboff.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/WANav12.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/HTML/DBMLogMode.htm" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/wait.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/ledg.gif" deleted
    file "g:/sapdb/programs/web/pgm/wahttp.conf" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/ledy.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/JavaScripts/Navigation.js" deleted
    file "g:/sapdb/programs/web/symbols/wahttp.pdb" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/HTML/DBMVersion.htm" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/HTML/XMLIDMLib_Html_EmptyServ.htm" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/HTML/XMLIDMLib_Html_Xie_Show.htm" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/HTML/DBMKernelTrace.htm" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/tab_last_on_next_on.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/HTML/WAShowServiceParametersToDelete.htm" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/tab_first_ang_off_prev_off.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/HTML/DBMMenu.htm" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/cornergb.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/xml_WANav7.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/xml_btnl3.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/tabfron.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/ok.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/b_arri.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/taboffon.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Styles/WDVHandler_Stylesheet.css" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/HTML/wqlogonmain.htm" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/HTML/DBMParams.htm" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/HTML/DBMDatabases.htm" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/ballgrey.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/dboltp3.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/HTML/DBMMsgBox.htm" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/HTML/DBMDevspace.htm" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/brand_left.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/label.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/xml_home.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/HTML/XMLIDMLib_Html_ClientXieAdmin.htm" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Styles/dbm_ns.css" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/btnl1.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/JavaScripts/DBMToolbox.js" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/LMDualDemo.gif" deleted
    file "g:/sapdb/programs/web/pgm/wapi.dll" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/HTML/DBMFiles.htm" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/arrowc.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/HTML/WDVHandler_Html_Header.htm" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/HTML/WADefineNewService.htm" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/xml_tabonoff.gif" deleted
    file "g:/sapdb/programs/web/Documents/WARoot/Images/WANav4.gif" deleted
    file "g:/sapdb/programs/web/

    no help?
    I've tried to search but so far, I have no luck.. hope that the jedi gurus here can help me
    thanks in advance

  • [SOLVED - Filesystem issue]Pacman corrupt - urgent help needed

    Erm, little problem here.
    Updated last night as normal and powered down my rig.
    This evening I got home, powered up and typed in
    sudo pacman -Syu
    and was greeted with the following:
    [llawwehttam@Steelhorn ~]$ sudo pacman -Syu
    Password:
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    multilib is up to date
    archlinuxfr is up to date
    :: Starting full system upgrade...
    error: could not open file /var/lib/pacman/sync/core/file-5.04-3/desc: Input/output error
    error: could not open file /var/lib/pacman/sync/core/file-5.04-3/desc: Input/output error
    error: could not open file /var/lib/pacman/sync/core/file-5.04-3/desc: Input/output error
    error: could not open file /var/lib/pacman/sync/core/file-5.04-3/desc: Input/output error
    error: could not open file /var/lib/pacman/sync/core/file-5.04-3/desc: Input/output error
    error: could not open file /var/lib/pacman/sync/extra/rtmpdump-2.3-3/desc: Input/output error
    *snip - lots of copies*
    resolving dependencies...
    looking for inter-conflicts...
    Targets (2): findutils-4.4.2-3 lib32-gtk2-2.22.1-2
    Total Download Size: 2.09 MB
    Total Installed Size: 7.90 MB
    Proceed with installation? [Y/n]
    After some googling I came to the conclusion that pacman was corrupt.
    I have NO idea how this happened.
    Is there a way to fix this without a re-install?
    Help is very much appreciated.
    EDIT:
    I have read the thread here: https://bbs.archlinux.org/viewtopic.php?id=95007 but I'm not sure if that would apply in this situation.
    EDIT2:
    Tried this:
    $ $ sudo pacman -Syy
    :: Synchronizing package databases...
    core 35.9K 287.2K/s 00:00:00 [################################] 100%
    error: could not remove database core
    error: failed to update core (could not remove database entry)
    extra 449.2K 446.1K/s 00:00:01 [################################] 100%
    error: could not remove database extra
    error: failed to update extra (could not remove database entry)
    community 405.7K 366.7K/s 00:00:01 [################################] 100%
    error: could not remove database community
    error: failed to update community (could not remove database entry)
    multilib 21.8K 251.3K/s 00:00:00 [################################] 100%
    archlinuxfr 23.0K 237.6K/s 00:00:00 [################################] 100%
    doesn't look normal.
    Any ideas much appreciated.
    EDIT3: More info:
    $ cd /var/lib/pacman/sync/core/file-5.04-3/
    [llawwehttam@Steelhorn file-5.04-3]$ ls
    ls: cannot access desc: Input/output error
    ls: cannot access depends: Input/output error
    depends desc
    $ ls -l /var/lib/pacman/sync{,/*}
    /var/lib/pacman/sync:
    total 248
    drwxr-xr-x 116 root root 4096 Nov 24 19:57 archlinuxfr
    drwxr-xr-x 4 root root 94208 Nov 24 19:15 community
    drwxr-xr-x 7 root root 12288 Nov 24 19:15 core
    drwxr-xr-x 3 root root 131072 Nov 24 19:15 extra
    drwxr-xr-x 125 root root 4096 Nov 24 19:57 multilib
    /var/lib/pacman/sync/archlinuxfr:
    total 456
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 afur-aur-1.0-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 afur-makepkg-0.3-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 arora-git-20101002-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 asd-tower-defense-v2.0_beta4-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 aurvote-0.4-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 awesome-3.4.8-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 azenis-icon-theme-0.1.1-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 b43-firmware-4.178.10.4-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 balz-1.15-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 batterysystemtray-git-20101122-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 bepo-keymaps-1.0rc2-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 bin32-flashplayer-standalone-10.1.85.3-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 bin32-skype-staticqt-2.1.0.81-4
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 cairo-dock-2.1.3-9
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 cairo-dock-themes-1.6.3.1-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 cairo-xcb-1.10.0-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 ccsm-0.9.2-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 celt-0.7-0.7.1-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 celt-0.8.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 cgit-0.8.3.4-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 clipgrab-3.0.7.2-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 codecs-20100303-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 compiz-core-0.9.2-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 compiz-plugins-extra-0.9.2-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 compiz-plugins-main-0.9.2-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 compiz-plugins-unsupported-0.9.2-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 compizconfig-python-0.9.2-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 customizepkg-0.2.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 emerald-git-20101118-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 fbpanel-6.1.491svn-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 fbpanel-fr-6.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 flashplugin-prerelease-10.2.161.23-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 fluxbox-git-20100912-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 foremost-1.5.7-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 gcc-gcj-4.5.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 gcc-gcj-ecj-4.5-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 gcc43-4.3.4-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 gerix-wifi-cracker-ng-r20-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 go-openoffice-fr-3.2.1-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 gsimplecal-0.6-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 gtk-theme-overglossed-hybrid-0.1-4
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 jaolt-0.5.3_627-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 jumanji-git-20101001-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 kernel-sources-2009.06.13-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 kernel26-i915-2.6.35-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 kernel26-xen-2.6.35.8-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 kernel26-xen-headers-2.6.35.8-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 kernel26rt-2.6.33.7_rt29-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 kirikoo-upload-0.4.6-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-jack-0.118.0-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libv4l-0.6.4-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 libafterimage-1.18-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 libcompizconfig-0.9.2-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 libfm-0.1.14-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 libiptcdata-1.0.4-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 libjpeg7-7-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 libpng12-1.2.43-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lsb-release-1.4-10
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 man-pages-fr-3.03.0-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 mechtower-1.0.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 mkgmap-r1728-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 mumble-1.2.2-7
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 nautilus-elementary-162-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 nautilus-gkim-0.6.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 obapps-0.1.7-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 obkey-git-20101028-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 ooo4kids-ar-1.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 ooo4kids-base-1.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 ooo4kids-de-1.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 ooo4kids-es-1.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 ooo4kids-fi-1.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 ooo4kids-fr-1.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 ooo4kids-it-1.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 ooo4kids-nb-1.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 ooo4kids-nl-1.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 ooo4kids-pt-1.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 ooo4kids-sl-1.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 ooo4kids-uk-1.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 ooo4kids-zh-CN-1.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 ooo4kids-zh-TW-1.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 openbox-menu-0.3.5-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 package-query-0.4-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 pacman-color-3.4.1-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 pari-2.3.5-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 pastebin-0.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 pcmanfm-0.9.8-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 pdftk-1.41-6
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 playonlinux-3.8.6-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 pure-ftpd-1.0.29-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 python-networkx-1.3-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 qrun-0.50-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 quad-1.12-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 rar-3.9.3-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 rar-beta-4.0.b1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 rawtherapee-3.0a1-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 redshift-1.6-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 repacman-0.98-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 rxvt-unicode-afterimage-9.06-4
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 sdesktop-0.3-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 stapler-2b-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 tint2-svn-523-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 toilet-0.2-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 trayfreq-fr-0.2.x.dev2-4
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 tuxbox-3.1.4-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 tuxracer-0.61-8
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 usmb-20100212-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 volumeicon-0.2.1-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 wto-1.0.3-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 xcas-0.9.0-4
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 xcfa-3.7.3-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 xcompmgr-dana-20091025-4
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 xfce4-gkim-0.6.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 yaourt-0.9.5.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 yget-2.2.1-1
    /var/lib/pacman/sync/community:
    total 0
    d????????? ? ? ? ? ? python-openbabel-2.3.0-2
    d????????? ? ? ? ? ? python2-openbabel-2.3.0-2
    /var/lib/pacman/sync/core:
    total 4
    drwxr-xr-x 2 root root 4096 Nov 21 09:54 file-5.04-3
    d????????? ? ? ? ? ? gzip-1.4-2
    d????????? ? ? ? ? ? less-436-2
    d????????? ? ? ? ? ? patch-2.6.1-2
    d????????? ? ? ? ? ? sed-4.2.1-3
    /var/lib/pacman/sync/extra:
    total 4
    drwxr-xr-x 2 root root 4096 Nov 24 19:15 rtmpdump-2.3-3
    /var/lib/pacman/sync/multilib:
    total 492
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 binutils-multilib-2.20.1-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 chuck-1.2.1.3-4
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 dwarffortress-0.31.18-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 flashplugin-10.1.102.64-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 gcc-ada-multilib-4.5.1-7
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 gcc-fortran-multilib-4.5.1-7
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 gcc-libs-multilib-4.5.1-7
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 gcc-multilib-4.5.1-7
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 gcc-objc-multilib-4.5.1-7
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-alsa-lib-1.0.23-4
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-alsa-oss-1.0.17-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-alsa-plugins-1.0.23-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-ati-dri-7.8.2-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-atk-1.32.0-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-attr-2.4.44-4
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-audiofile-0.2.7-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-cairo-1.10.0-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-curl-7.21.2-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-db-4.8.26-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-dbus-core-1.4.0-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-e2fsprogs-1.41.12-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-expat-2.0.1-7
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-flac-1.2.1-7
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-fontconfig-2.8.0-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-freetype2-2.4.3-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-gcc-libs-4.5.1-7
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-gdk-pixbuf2-2.22.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-giflib-4.1.6-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-glib-1.2.10-11
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-glib2-2.26.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-glibc-2.12.1-9
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-gnutls-2.8.6-4
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-gtk-1.2.10-11
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-gtk2-2.22.1-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-heimdal-1.3.3-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-intel-dri-7.8.2-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-jack-0.118.0-6
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-lcms-1.19-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libasyncns-0.8-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libcanberra-0.25-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libcap-2.19-4
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libcups-1.4.5-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libdrm-2.4.21-4
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libflashsupport-9.0.21.78-10
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libgcrypt-1.4.6-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libgl-7.8.2-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libgpg-error-1.9-4
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libice-1.0.7-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libjpeg-8.0.2-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libldap-2.4.22-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libmng-1.0.10-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libogg-1.2.0-4
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libpng-1.4.4-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libsamplerate-0.1.7-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libsm-1.2.0-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libsndfile-1.0.21-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libstdc++5-3.3.6-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libtiff-3.9.4-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libtool-2.4-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libvorbis-1.3.1-4
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libx11-1.3.5-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxau-1.0.6-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxcb-1.7-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxcomposite-0.4.3-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxcursor-1.1.11-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxdamage-1.1.3-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxdmcp-1.0.3-4
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxext-1.2.0-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxfixes-4.0.5-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxft-2.2.0-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxi-1.3.2-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxinerama-1.1.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxml2-2.7.7-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxmu-1.0.5-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxpm-3.5.8-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxrandr-1.3.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxrender-0.9.6-4
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxslt-1.1.26-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxss-1.2.0-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxt-1.0.9-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxtst-1.1.0-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxv-1.0.5-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxvmc-1.0.6-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxxf86dga-1.1.1-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-libxxf86vm-1.1.0-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-mach64-dri-7.8.2-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-mesa-7.8.2-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-mga-dri-7.8.2-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-mpg123-1.12.3-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-ncurses-5.7-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-nouveau-dri-7.8.2-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-nspr-4.8.6-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-nss-3.12.7-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-nvidia-utils-260.19.21-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-openal-1.12.854-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-openssl-1.0.0.a-6
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-pango-1.28.3-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-pcre-8.10-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-pixman-0.20.0-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-pulseaudio-0.9.21-14
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-qt-4.7.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-r128-dri-7.8.2-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-readline-6.1.002-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-savage-dri-7.8.2-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-sdl-1.2.14-7
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-sdl_image-1.2.10-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-sdl_ttf-2.0.10-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-sis-dri-7.8.2-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-speex-1.2rc1-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-sqlite3-3.7.1-2
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-tdb-1.2.1-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-tdfx-dri-7.8.2-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-unichrome-dri-7.8.2-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-util-linux-ng-2.18-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-v4l-utils-0.8.1-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-xcb-util-0.3.6-3
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 lib32-zlib-1.2.5-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 libtool-multilib-2.4-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 nspluginwrapper-1.3.0-4
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 skype-2.1.0.81-5
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 wine-1.3.7-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 wine_gecko-1.1.0-1
    drwxr-xr-x 2 root root 4096 Nov 24 19:57 zsnes-1.51-7
    Last edited by llawwehttam (2010-11-24 20:29:43)

    loafer wrote:It's the sync DB which has the problem.  Rename the dirs to core-old etc. and then "pacman -Syy" to force a download.  If that fixes it you can just delete the old ones.
    Thanks,
    Ill try that in a minute.
    I guessed that Input/output error meant filesystem corruption so I rebooted using :
    sudo shutdown -rF now
    and the resulting fsck on bootup had a few errors.
    Manually fixed them and now waiting for fsck to finish.
    Could take a while.
    I'll update when it boots.
    update:
    Booted,
    sudo pacman -Syy
    *no errors*
    sudo pacman -Syu
    *no errors*
    Guess its fixed then.
    I see how your fix would work, but I'm not sure I would have been able to rename the folders if they contain corrupted files.
    Thanks anyway,
    Matt
    Last edited by llawwehttam (2010-11-24 20:27:35)

  • Unzip using zlib java

    hello friends,
    Please help me out...iam in urgent help..iam not getting answer for this .. Using zlib java..
    I have a zipfile named prabhu.zip
    It contains
    prabhu\prabhuimage\imagefiles
    right now iam able to unzip only files in current folders..i mean prabhu
    i want to unzip subfolders also...eg prabhuimage folder..
    RIght now only files in current folder is getting unzipped..
    please understand this and help me out my friend..
    Thanks and Regards,
    Prabhu

    hello friends,
    Please help me out...iam in urgent help..iam not getting answer for this .. Using zlib java..
    I have a zipfile named prabhu.zip
    It contains
    prabhu\prabhuimage\imagefiles
    right now iam able to unzip only files in current folders..i mean prabhu
    i want to unzip subfolders also...eg prabhuimage folder..
    RIght now only files in current folder is getting unzipped..
    please understand this and help me out my friend..
    Thanks and Regards,
    Prabhu

  • HELP! Mail stuck in the queue.

    Hey All,
    We just noticed that none of us here recieved any mail today and that all of our messages incoming/outgoing have been stuck in the queue all day.
    We seem to be able to view old messages with our mail clients as well as any folders. But any new messages that we send or recieve just go to the server and sit there.
    It's quite puzzeling because we haven't changed anything on it, the server has just been quietly humming along for a while now.
    However, this seems to have started happening after we restarted the box this morning because a web app we were building on it ended up in an infinite loop.
    I tried re-starting the box, restarting the mail service, resending the queue and nothing, messages hit the queue and fail to be delivered to mailboxes.
    Looking at my logs I saw this:
    Nov 9 16:56:28 resserver imap[4733]: DBERROR: critical database situation
    Nov 9 17:00:07 resserver imap[4833]: DBERROR: critical database situation
    Nov 9 17:15:56 resserver reconstruct[5700]: DBERROR: critical database situation
    Nov 9 17:16:02 resserver reconstruct[5726]: DBERROR: critical database situation
    In the queue some messages say this at the end:
    host 127.0.0.1[127.0.0.1] said: 421 4.3.2 Service shutting down, closing channel (in reply to end of DATA command
    Looking in my resources and in other places on the forums I've tried the following so far in hopes to narrow down and fix the problem:
    - rebuilt with mailbfr (as per petrobytes suggestion with someone else)
    - turned on and off content filtering
    - confirmed that the machine has the same IP
    - confirmed that it resolves forward and backward to it's hostname/IP
    I can post any conf files you need, I'm desperate to get this fixed! Any help or insight anyone could provide would be well appreciated!
    eMac, iBook, iMac, xServe, PowerBook   Mac OS X (10.4.3)  

    I'm noticing some interesting stuff happening in the logs can someone make sense of this?
    solutionim.com /usr/bin/amavisd[7872]: (07872-01) Requesting process rundown after fatal error
    Nov 9 18:47:15 resserver.resolutionim.com /usr/bin/amavisd[7872]: (07872-01) SMTP shutdown: Error writing a SMTP response to the socket: Bad file descriptor at (eval 36) line 760.\n
    Nov 9 18:47:15 resserver.resolutionim.com /usr/bin/amavisd[7873]: (07873-01) TROUBLE in check_mail: mime_decode-1 FAILED: parsing file(1) results - missing last 2 results at (eval 41) line 150.
    Nov 9 18:47:15 resserver.resolutionim.com /usr/bin/amavisd[7873]: (07873-01) PRESERVING EVIDENCE in /var/amavis/amavis-20061109T184715-07873
    Nov 9 18:47:15 resserver.resolutionim.com /usr/bin/amavisd[7873]: (07873-01) TIMING [total 350 ms] - SMTP EHLO: 23 (7%), SMTP pre-MAIL: 2 (1%), mkdir tempdir: 1 (0%), create email.txt: 2 (0%), SMTP pre-DATA-flush: 9 (3%), SMTP DATA: 9 (3%), body_hash: 3 (1%), mkdir parts: 3 (1%), mime_decode: 72 (21%), rundown: 226 (65%)
    Nov 9 18:47:15 resserver.resolutionim.com /usr/bin/amavisd[7873]: (07873-01) TROUBLE in process_request: Error writing a SMTP response to the socket: Broken pipe at (eval 36) line 760, <GEN4> line 568.
    Nov 9 18:47:15 resserver.resolutionim.com /usr/bin/amavisd[7873]: (07873-01) Requesting process rundown after fatal error
    Nov 9 18:47:15 resserver.resolutionim.com /usr/bin/amavisd[7873]: (07873-01) SMTP shutdown: Error writing a SMTP response to the socket: Bad file descriptor at (eval 36) line 760.\n
    Nov 9 18:47:15 resserver.resolutionim.com /usr/bin/amavisd[7876]: (07876-01) ESMTP::10024 /var/amavis/amavis-20061109T184715-07876: <[email protected]> -> <[email protected]> Received: SIZE=50687 from resolutionim.com ([127.0.0.1]) by localhost (resserver.resolutionim.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07876-01 for <[email protected]>; Thu, 9 Nov 2006 18:47:15 -0500 (EST)
    Nov 9 18:47:15 resserver.resolutionim.com /usr/bin/amavisd[7876]: (07876-01) Checking: [216.46.146.115] <[email protected]> -> <[email protected]>
    Nov 9 18:47:15 resserver.resolutionim.com /usr/bin/amavisd[7876]: (07876-01) p004 1 Content-Type: multipart/mixed
    Nov 9 18:47:15 resserver.resolutionim.com /usr/bin/amavisd[7876]: (07876-01) p005 1/1 Content-Type: multipart/alternative
    Nov 9 18:47:15 resserver.resolutionim.com /usr/bin/amavisd[7876]: (07876-01) p001 1/1/1 Content-Type: text/plain, size: 259 B, name:
    Nov 9 18:47:15 resserver.resolutionim.com /usr/bin/amavisd[7876]: (07876-01) p002 1/1/2 Content-Type: text/html, size: 2227 B, name:
    Nov 9 18:47:15 resserver.resolutionim.com /usr/bin/amavisd[7876]: (07876-01) p003 1/2 Content-Type: application/vnd.ms-excel, size: 33280 B, name: Emploment Application.xls
    Nov 9 18:47:15 resserver.resolutionim.com /usr/bin/amavisd[7879]: (07876-01) run_command: child process [7879]: Can't close main::stdin: Bad file descriptor at /usr/bin/amavisd line 1589.\n
    Nov 9 18:47:15 resserver.resolutionim.com /usr/bin/amavisd[7879]: (07876-01) SMTP shutdown: tempdir is being removed: /var/amavis/amavis-20061109T184715-07876
    Nov 9 18:47:15 resserver.resolutionim.com /usr/bin/amavisd[7876]: (07876-01) TROUBLE in check_mail: mime_decode-1 FAILED: parsing file(1) results - missing last 3 results at (eval 41) line 150.
    Nov 9 18:47:15 resserver.resolutionim.com /usr/bin/amavisd[7876]: (07876-01) PRESERVING EVIDENCE in /var/amavis/amavis-20061109T184715-07876
    Nov 9 18:47:16 resserver.resolutionim.com /usr/bin/amavisd[7876]: (07876-01) TIMING [total 366 ms] - SMTP EHLO: 24 (7%), SMTP pre-MAIL: 3 (1%), mkdir tempdir: 2 (0%), create email.txt: 2 (1%), SMTP pre-DATA-flush: 25 (7%), SMTP DATA: 31 (8%), body_hash: 3 (1%), mkdir parts: 3 (1%), mime_decode: 95 (26%), rundown: 178 (49%)
    Nov 9 18:47:16 resserver.resolutionim.com /usr/bin/amavisd[7876]: (07876-01) TROUBLE in process_request: Error writing a SMTP response to the socket: Broken pipe at (eval 36) line 760, <GEN4> line 771.
    Nov 9 18:47:16 resserver.resolutionim.com /usr/bin/amavisd[7876]: (07876-01) Requesting process rundown after fatal error
    Nov 9 18:47:16 resserver.resolutionim.com /usr/bin/amavisd[7876]: (07876-01) SMTP shutdown: Error writing a SMTP response to the socket: Bad file descriptor at (eval 36) line 760.\n
    Nov 9 18:48:33 resserver.resolutionim.com /usr/bin/amavisd[7759]: Net::Server: 2006/11/09-18:48:33 Server closing!
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: starting. /usr/bin/amavisd at resserver.resolutionim.com amavisd-new-2.2.0 (20041102), Unicode aware
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: user=, EUID: 0 (0); group=, EGID: 0 0 (0 0)
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Perl version 5.008006
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Net::Server: 2006/11/09-18:48:36 Amavis (type Net::Server::PreForkSimple) starting! pid(7927)
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Net::Server: Binding to UNIX socket file /var/amavis/amavisd.sock using SOCK_STREAM
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Net::Server: Binding to TCP port 10024 on host 127.0.0.1
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Net::Server: Setting gid to "82 82"
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Net::Server: Setting uid to "82"
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Module Amavis::Conf 2.033
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Module Archive::Tar 1.22
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Module Archive::Zip 1.14
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Module Compress::Zlib 1.33
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Module Convert::TNEF 0.17
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Module Convert::UUlib 1.03
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Module DB_File 1.810
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Module MIME::Entity 5.416
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Module MIME::Parser 5.416
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Module MIME::Tools 5.416
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Module Mail::Header 1.65
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Module Mail::Internet 1.65
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Module Mail::SpamAssassin 3.001005
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Module Net::Cmd 2.26
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Module Net::DNS 0.58
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Module Net::SMTP 2.29
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Module Net::Server 0.94
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Module Time::HiRes 1.65
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Module Unix::Syslog 0.99
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Amavis::DB code NOT loaded
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Amavis::Cache code NOT loaded
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Lookup::SQL code NOT loaded
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Lookup::LDAP code NOT loaded
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: AMCL-in protocol code loaded
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: SMTP-in protocol code loaded
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: ANTI-VIRUS code loaded
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: ANTI-SPAM code loaded
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Unpackers code loaded
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Found $file at /usr/bin/file
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: No $arc, not using it
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Found $gzip at /usr/bin/gzip
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Found $bzip2 at /usr/bin/bzip2
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: No $lzop, not using it
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: No $lha, not using it
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: No $unarj, not using it
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Found $uncompress at /usr/bin/uncompress
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: No $unfreeze, not using it
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: No $unrar, not using it
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: No $zoo, not using it
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Found $cpio at /usr/bin/cpio
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: No $ar, not using it
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: No $rpm2cpio, not using it
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: No $cabextract, not using it
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: No $dspam, not using it
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: Found secondary av scanner Clam Antivirus - clamscan at /usr/bin/clamscan
    Nov 9 18:48:36 resserver.resolutionim.com /usr/bin/amavisd[7927]: SpamControl: initializing Mail::SpamAssassin
    Nov 9 18:48:44 resserver.resolutionim.com /usr/bin/amavisd[7927]: SpamControl: done
    SMTP response to the socket: Broken pipe at (eval 36) line 760, <GEN4> line 350.
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9584]: (09584-01) Requesting process rundown after fatal error
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9584]: (09584-01) SMTP shutdown: Error writing a SMTP response to the socket: Bad file descriptor at (eval 36) line 760.\n
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9586]: (09586-01) ESMTP::10024 /var/amavis/amavis-20061109T194144-09586: <[email protected]> -> <[email protected]>,<[email protected]> Received: SIZE=236428 from resolutionim.com ([127.0.0.1]) by localhost (resserver.resolutionim.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09586-01; Thu, 9 Nov 2006 19:41:44 -0500 (EST)
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9586]: (09586-01) Checking: [192.168.1.121] <[email protected]> -> <[email protected]>,<[email protected]>
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9587]: (09587-01) ESMTP::10024 /var/amavis/amavis-20061109T194144-09587: <[email protected]> -> <[email protected]> Received: SIZE=2799147 from resolutionim.com ([127.0.0.1]) by localhost (resserver.resolutionim.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09587-01 for <[email protected]>; Thu, 9 Nov 2006 19:41:44 -0500 (EST)
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9586]: (09586-01) p008 1 Content-Type: multipart/alternative
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9586]: (09586-01) p001 1/1 Content-Type: text/plain, size: 1103 B, name:
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9586]: (09586-01) p009 1/2 Content-Type: multipart/mixed
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9586]: (09586-01) p002 1/2/1 Content-Type: text/html, size: 4971 B, name:
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9586]: (09586-01) p003 1/2/2 Content-Type: application/vnd.ms-excel, size: 16384 B, name: Feed Locations.xls
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9586]: (09586-01) p004 1/2/3 Content-Type: application/octet-stream, size: 15355 B, name: Example of Feed Locations.pdf
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9586]: (09586-01) p005 1/2/4 Content-Type: image/jpeg, size: 68882 B, name: zurlftoct06.JPG
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9586]: (09586-01) p006 1/2/5 Content-Type: image/jpeg, size: 65599 B, name: extrrtlondsoct06.JPG
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9586]: (09586-01) p007 1/2/6 Content-Type: text/html, size: 184 B, name:
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9588]: (09586-01) run_command: child process [9588]: Can't close main::stdin: Bad file descriptor at /usr/bin/amavisd line 1589.\n
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9588]: (09586-01) SMTP shutdown: tempdir is being removed: /var/amavis/amavis-20061109T194144-09586
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9586]: (09586-01) TROUBLE in check_mail: mime_decode-1 FAILED: parsing file(1) results - missing last 7 results at (eval 41) line 150.
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9586]: (09586-01) PRESERVING EVIDENCE in /var/amavis/amavis-20061109T194144-09586
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9586]: (09586-01) TIMING [total 435 ms] - SMTP EHLO: 22 (5%), SMTP pre-MAIL: 3 (1%), mkdir tempdir: 1 (0%), create email.txt: 2 (0%), SMTP pre-DATA-flush: 10 (2%), SMTP DATA: 45 (10%), body_hash: 6 (1%), mkdir parts: 3 (1%), mime_decode: 158 (36%), rundown: 185 (42%)
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9586]: (09586-01) TROUBLE in process_request: Error writing a SMTP response to the socket: Broken pipe at (eval 36) line 760, <GEN4> line 3144.
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9586]: (09586-01) Requesting process rundown after fatal error
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9586]: (09586-01) SMTP shutdown: Error writing a SMTP response to the socket: Bad file descriptor at (eval 36) line 760.\n
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9589]: (09589-01) ESMTP::10024 /var/amavis/amavis-20061109T194144-09589: <[email protected]> -> <[email protected]> Received: SIZE=2244 from resolutionim.com ([127.0.0.1]) by localhost (resserver.resolutionim.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09589-01 for <[email protected]>; Thu, 9 Nov 2006 19:41:44 -0500 (EST)
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9589]: (09589-01) Checking: [65.54.246.141] <[email protected]> -> <[email protected]>
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9589]: (09589-01) p001 1 Content-Type: text/plain, size: 1084 B, name:
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9590]: (09589-01) run_command: child process [9590]: Can't close main::stdin: Bad file descriptor at /usr/bin/amavisd line 1589.\n
    Nov 9 19:41:44 resserver.resolutionim.com /usr/bin/amavisd[9590]: (09589-01) SMTP shutdown: tempdir is being removed: /var/amavis/amavis-20061109T194144-09589
    Nov 9 19:41:45 resserver.resolutionim.com /usr/bin/amavisd[9589]: (09589-01) TROUBLE in check_mail: mime_decode-1 FAILED: parsing file(1) results - missing last 1 results at (eval 41) line 150.
    Nov 9 19:41:45 resserver.resolutionim.com /usr/bin/amavisd[9589]: (09589-01) PRESERVING EVIDENCE in /var/amavis/amavis-20061109T194144-09589
    Nov 9 19:41:45 resserver.resolutionim.com /usr/bin/amavisd[9589]: (09589-01) TIMING [total 240 ms] - SMTP EHLO: 19 (8%), SMTP pre-MAIL: 2 (1%), mkdir tempdir: 1 (1%), create email.txt: 2 (1%), SMTP pre-DATA-flush: 8 (3%), SMTP DATA: 2 (1%), body_hash: 2 (1%), mkdir parts: 3 (1%), mime_decode: 36 (15%), rundown: 165 (69%)
    Nov 9 19:41:45 resserver.resolutionim.com /usr/bin/amavisd[9589]: (09589-01) TROUBLE in process_request: Error writing a SMTP response to the socket: Broken pipe at (eval 36) line 760, <GEN4> line 67.
    Nov 9 19:41:45 resserver.resolutionim.com /usr/bin/amavisd[9589]: (09589-01) Requesting process rundown after fatal error
    Nov 9 19:41:45 resserver.resolutionim.com /usr/bin/amavisd[9589]: (09589-01) SMTP shutdown: Error writing a SMTP response to the socket: Bad file descriptor at (eval 36) line 760.\n
    Nov 9 19:41:45 resserver.resolutionim.com /usr/bin/amavisd[9591]: (09591-01) ESMTP::10024 /var/amavis/amavis-20061109T194145-09591: <[email protected]> -> <[email protected]> Received: SIZE=2799145 from resolutionim.com ([127.0.0.1]) by localhost (resserver.resolutionim.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09591-01 for <[email protected]>; Thu, 9 Nov 2006 19:41:45 -0500 (EST)
    Nov 9 19:41:45 resserver.resolutionim.com /usr/bin/amavisd[9587]: (09587-01) Checking: [65.54.246.171] <[email protected]> -> <[email protected]>
    Nov 9 19:41:45 resserver.resolutionim.com /usr/bin/amavisd[9591]: (09591-01) Checking: [65.54.246.173] <[email protected]> -> <[email protected]>
    Nov 9 19:41:45 resserver.resolutionim.com /usr/bin/amavisd[9587]: (09587-01) p003 1 Content-Type: multipart/mixed
    Nov 9 19:41:45 resserver.resolutionim.com /usr/bin/amavisd[9587]: (09587-01) p001 1/1 Content-Type: text/html, size: 6064 B, name:
    Nov 9 19:41:45 resserver.resolutionim.com /usr/bin/amavisd[9587]: (09587-01) p002 1/2 Content-Type: video/x-ms-wmv, size: 2025860 B, name: JBSklip.wmv
    Nov 9 19:41:45 resserver.resolutionim.com /usr/bin/amavisd[9592]: (09587-01) run_command: child process [9592]: Can't close main::stdin: Bad file descriptor at /usr/bin/amavisd line 1589.\n
    Nov 9 19:41:45 resserver.resolutionim.com /usr/bin/amavisd[9592]: (09587-01) SMTP shutdown: tempdir is being removed: /var/amavis/amavis-20061109T194144-09587
    Nov 9 19:41:46 resserver.resolutionim.com /usr/bin/amavisd[9587]: (09587-01) TROUBLE in check_mail: mime_decode-1 FAILED: parsing file(1) results - missing last 2 results at (eval 41) line 150.
    Nov 9 19:41:46 resserver.resolutionim.com /usr/bin/amavisd[9587]: (09587-01) PRESERVING EVIDENCE in /var/amavis/amavis-20061109T194144-09587
    Nov 9 19:41:46 resserver.resolutionim.com /usr/bin/amavisd[9587]: (09587-01) TIMING [total 1950 ms] - SMTP EHLO: 22 (1%), SMTP pre-MAIL: 4 (0%), mkdir tempdir: 1 (0%), create email.txt: 2 (0%), SMTP pre-DATA-flush: 9 (0%), SMTP DATA: 868 (44%), body_hash: 34 (2%), mkdir parts: 3 (0%), mime_decode: 610 (31%), rundown: 397 (20%)
    Nov 9 19:41:46 resserver.resolutionim.com /usr/bin/amavisd[9587]: (09587-02) ESMTP::10024 /var/amavis/amavis-20061109T194146-09587: <[email protected]> -> <[email protected]> Received: SIZE=14124 from resolutionim.com ([127.0.0.1]) by localhost (resserver.resolutionim.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09587-02 for <[email protected]>; Thu, 9 Nov 2006 19:41:46 -0500 (EST)
    Nov 9 19:41:46 resserver.resolutionim.com /usr/bin/amavisd[9587]: (09587-02) Checking: [64.233.166.181] <[email protected]> -> <[email protected]>
    Nov 9 19:41:46 resserver.resolutionim.com /usr/bin/amavisd[9587]: (09587-02) p003 1 Content-Type: multipart/alternative
    Nov 9 19:41:46 resserver.resolutionim.com /usr/bin/amavisd[9587]: (09587-02) p001 1/1 Content-Type: text/plain, size: 2089 B, name:
    Nov 9 19:41:46 resserver.resolutionim.com /usr/bin/amavisd[9587]: (09587-02) p002 1/2 Content-Type: text/html, size: 9454 B, name:
    Nov 9 19:41:46 resserver.resolutionim.com /usr/bin/amavisd[9593]: (09587-02) run_command: child process [9593]: Can't close main::stdin: Bad file descriptor at /usr/bin/amavisd line 1589.\n
    Nov 9 19:41:46 resserver.resolutionim.com /usr/bin/amavisd[9593]: (09587-02) SMTP shutdown: tempdir is being removed: /var/amavis/amavis-20061109T194146-09587

Maybe you are looking for

  • How to change the width of the form

    hi all, sometimes i want to change the width of a form ,then dispaly some text_item in it, how to ? thanks best regards!

  • "Your computer does not support video chatting." Sometimes.

    Hi, I'm on a MacBook late '08 and my pal has some earlier macbook. We are on each other's bonjour list. The problem is that sometimes we can have a video conference no problem, and at other, random times, the option is grayed out, and if I go to pref

  • Keynote 3 and QT

    The following is from the Keynote 3 product page: "You can also export your presentation as a QuickTime movie that will play back on any Mac or PC." This just isn't true as of the current versions Keynote and QT. The forums here list many compatibili

  • Flash Show Mask Question

    Hey Guys, I was wondering if a Flash person could help me with something. I am creating (or trying to at least) a Flash show that begins with a logo being slowly unmasked: http://riverahotelsouthbeach.com/allie/index.html But then I wanted to add pho

  • Duplicate Title Tags - but one product in multiple categories?

    Hi there and Happy Friday! I'm an SEO newbie so please forgive my ignorance on all this.. but I'm confused I installed Google Webmaster Tools and it says I have lots of "Duplicate title tags" "Your title provides users and search engines with useful