FTP Triggering

Hi all i implement the bpel code for triggering and polling the .trg and .txt files by using ftp adapter.The importance of Triggering files in my process is these are used for poll the .trg triggering files. The importance of Triggering is If you want more control over polling, then you can use a file-based trigger. Once the Oracle File or FTP Adapter finds the specified trigger file in a local or remote directory, it starts polling for the files in the inbound directory.Now my problem is the same file got triggered and processed again.Here i used the Get operation for trg files and sync Get for .txt files.I'm not able to undestand why the same file triggered and processes again.what is the cause of this issue.Anybody plz help me.Thanks in advance.
Edited by: 851924 on Jul 19, 2011 1:46 AM

Hi Yatan,
I want to read two files,one is .trg file,and 2nd is .txt file. .trg file consist of only time stamp,this file is only for triggering. The importance of this Triggering is If you want more control over polling, then you can use a file-based trigger. Once the Oracle File or FTP Adapter finds the specified trigger file( .trg) in a local or remote directory, it starts polling for the files in the inbound directory. .txt file consist of some contents.
If you Place .txt file in the incoming directory and also place the test.trg file in the same directory, file in the incoming directory will be deleted and you can find the same file in the outgoing directory. Delete the test.trg file from the incoming directory and again place any *.txt file in the incoming directory wait for 20 secs and still the file remains in the same incoming directory. Place the test.trg file in the incoming directory and after 20 secs you will find the file in the outgoing directory. So when the ftp adapter finds the specified trigger file in a local or remote directory, it starts polling for the files in the inbound directory. Otherwise no polling process will be conducted. This is just for providing the control over polling. But I’m not able to understand how the same file got triggered and processed again.
Can u plz help me in this,Any idea how the same file would trigger twice?
Thanks,
Radhika.
Edited by: 851924 on Jul 19, 2011 3:02 AM

Similar Messages

  • FTP Module of PHP not installed

    So I'm trying to install Net2FTP on my server, so my friends will have an easy way to upload files without installing something on their desktop.
    Basically, it's running fine and dandy apart from one promblem:
    Clicking LOGIN brings the following error:
    "The FTP module of PHP is not installed."
    The problem is, I have the module enabled in my php.ini (About halfway down the code file, under Dynamic Extensions):
    [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.
    ; 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.
    ; allow_call_time_pass_reference
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; 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
    ; Development Value: E_ALL | E_STRICT
    ; Production Value: E_ALL & ~E_DEPRECATED
    ; html_errors
    ; Default Value: On
    ; Development Value: On
    ; Production value: Off
    ; log_errors
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: On
    ; magic_quotes_gpc
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; 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
    ; register_long_arrays
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; request_order
    ; Default Value: None
    ; Development Value: "GP"
    ; Production Value: "GP"
    ; session.bug_compat_42
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; session.bug_compat_warn
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; 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's been
    ; recommended for several years that you not use the short tag "short cut" and
    ; instead to use the full <?php and ?> tag combination. With the wide spread use
    ; of XML and use of these tags by other languages, the server can become easily
    ; confused and end up parsing the wrong code in the wrong context. But because
    ; this short cut has been a feature for such a long time, it's currently still
    ; supported for backwards compatibility, but we recommend you don't use them.
    ; 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
    ; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
    ; http://php.net/y2k-compliance
    y2k_compliance = On
    ; 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
    ; This directive allows you to enable and disable warnings which PHP will issue
    ; if you pass a value by reference at function call time. Passing values by
    ; reference at function call time is a deprecated feature which will be removed
    ; from PHP at some point in the near future. The acceptable method for passing a
    ; value by reference to a function is by declaring the reference in the functions
    ; definition, not at call time. This directive does not disable this feature, it
    ; only determines whether PHP will warn you about it or not. These warnings
    ; should enabled in development environments only.
    ; Default Value: On (Suppress warnings)
    ; Development Value: Off (Issue warnings)
    ; Production Value: Off (Issue warnings)
    ; http://php.net/allow-call-time-pass-reference
    allow_call_time_pass_reference = Off
    ; Safe Mode
    ; http://php.net/safe-mode
    safe_mode = Off
    ; By default, Safe Mode does a UID compare check when
    ; opening files. If you want to relax this to a GID compare,
    ; then turn on safe_mode_gid.
    ; http://php.net/safe-mode-gid
    safe_mode_gid = Off
    ; When safe_mode is on, UID/GID checks are bypassed when
    ; including files from this directory and its subdirectories.
    ; (directory must also be in include_path or full path must
    ; be used when including)
    ; http://php.net/safe-mode-include-dir
    safe_mode_include_dir =
    ; When safe_mode is on, only executables located in the safe_mode_exec_dir
    ; will be allowed to be executed via the exec family of functions.
    ; http://php.net/safe-mode-exec-dir
    safe_mode_exec_dir =
    ; Setting certain environment variables may be a potential security breach.
    ; This directive contains a comma-delimited list of prefixes. In Safe Mode,
    ; the user may only alter environment variables whose names begin with the
    ; prefixes supplied here. By default, users will only be able to set
    ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
    ; Note: If this directive is empty, PHP will let the user modify ANY
    ; environment variable!
    ; http://php.net/safe-mode-allowed-env-vars
    safe_mode_allowed_env_vars = PHP_
    ; This directive contains a comma-delimited list of environment variables that
    ; the end user won't be able to change using putenv(). These variables will be
    ; protected even if safe_mode_allowed_env_vars is set to allow to change them.
    ; http://php.net/safe-mode-protected-env-vars
    safe_mode_protected_env_vars = LD_LIBRARY_PATH
    ; open_basedir, if set, limits all file operations to the defined directory
    ; and below. This directive makes most sense if used in a per-directory
    ; or per-virtualhost web server configuration file. This directive is
    ; *NOT* affected by whether Safe Mode is turned On or Off.
    ; http://php.net/open-basedir
    open_basedir = /srv/http/:/home/:/tmp/:/usr/share/pear/
    ; 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.bg = #FFFFFF
    ;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
    ; 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 | E_STRICT. 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 6.0.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 & ~E_NOTICE (Show all errors, except for notices and coding standards warnings.)
    ; E_ALL & ~E_NOTICE | E_STRICT (Show all errors, except for notices)
    ; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
    ; E_ALL | E_STRICT (Show all errors, warnings and notices including coding standards.)
    ; Default Value: E_ALL & ~E_NOTICE
    ; Development Value: E_ALL | E_STRICT
    ; Production Value: E_ALL & ~E_DEPRECATED
    ; http://php.net/error-reporting
    error_reporting = E_ALL & ~E_DEPRECATED
    ; 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 inserting html
    ; links to documentation related to that error. This directive controls whether
    ; those HTML links appear in error messages or not. For performance and security
    ; reasons, it's recommended you disable this on production servers.
    ; Note: This directive is hardcoded to Off for the CLI SAPI
    ; Default Value: On
    ; Development Value: On
    ; Production value: Off
    ; http://php.net/html-errors
    html_errors = Off
    ; If html_errors is set On PHP produces clickable error messages that direct
    ; to a page describing the error or function causing the error in detail.
    ; You can download a copy of the PHP manual from http://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.
    ; 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 NT, not valid in Windows 95).
    ;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. If the register_globals directive is enabled, it also determines
    ; what order variables are populated into the global space. 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
    ; 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"
    ; Whether or not to register the EGPCS variables as global variables. You may
    ; want to turn this off if you don't want to clutter your scripts' global scope
    ; with user data.
    ; You should do your best to write your scripts so that they do not require
    ; register_globals to be on; Using form variables as globals can easily lead
    ; to possible security problems, if the code is not very well thought of.
    ; http://php.net/register-globals
    register_globals = Off
    ; Determines whether the deprecated long $HTTP_*_VARS type predefined variables
    ; are registered by PHP or not. As they are deprecated, we obviously don't
    ; recommend you use them. They are on by default for compatibility reasons but
    ; they are not recommended on production servers.
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; http://php.net/register-long-arrays
    register_long_arrays = Off
    ; 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 SERVER and ENV 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 directives register_globals, register_long_arrays,
    ; and register_argc_argv must be disabled for this directive to have any affect.
    ; http://php.net/auto-globals-jit
    auto_globals_jit = On
    ; Maximum size of POST data that PHP will accept.
    ; http://php.net/post-max-size
    post_max_size = 8M
    ; Magic quotes are a preprocessing feature of PHP where PHP will attempt to
    ; escape any character sequences in GET, POST, COOKIE and ENV data which might
    ; otherwise corrupt data being placed in resources such as databases before
    ; making that data available to you. Because of character encoding issues and
    ; non-standard SQL implementations across many databases, it's not currently
    ; possible for this feature to be 100% accurate. PHP's default behavior is to
    ; enable the feature. We strongly recommend you use the escaping mechanisms
    ; designed specifically for the database your using instead of relying on this
    ; feature. Also note, this feature has been deprecated as of PHP 5.3.0 and is
    ; scheduled for removal in PHP 6.
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; http://php.net/magic-quotes-gpc
    magic_quotes_gpc = Off
    ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
    ; http://php.net/magic-quotes-runtime
    magic_quotes_runtime = Off
    ; Use Sybase-style magic quotes (escape ' with '' instead of \').
    ; http://php.net/magic-quotes-sybase
    magic_quotes_sybase = Off
    ; 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 = "iso-8859-1"
    ; Always populate the $HTTP_RAW_POST_DATA variable. PHP's default behavior is
    ; to disable this feature.
    ; 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"
    ; 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 = 1024M
    ; 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=json.so
    ;extension=ldap.so
    ;extension=mcrypt.so
    ;extension=mssql.so
    extension=mysqli.so
    extension=mysql.so
    ;extension=odbc.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=sqlite.so
    ;extension=sysvmsg.so
    ;extension=sysvsem.so
    ;extension=sysvshm.so
    ;extension=tidy.so
    ;extension=xmlrpc.so
    ;extension=xsl.so
    extension=zip.so
    ; Module Settings ;
    [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 =
    [Syslog]
    ; Whether or not to define the various syslog variables (e.g. $LOG_PID,
    ; $LOG_CRON, etc.). Turning it off is a good idea performance-wise. In
    ; runtime, you can define these variables by calling define_syslog_variables().
    ; http://php.net/define-syslog-variables
    define_syslog_variables = Off
    [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 =
    [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 caching, and specifies how
    ; many statements to cache. Using 0 disables statement caching.
    ; http://php.net/oci8.statement-cache-size
    ;oci8.statement_cache_size = 20
    ; Tuning: Enables statement prefetching and sets the default number of
    ; rows that will be fetched automatically after statement execution.
    ; http://php.net/oci8.default-prefetch
    ;oci8.default_prefetch = 100
    ; Compatibility. Using On means oci_close() will not close
    ; oci_connect() and oci_new_connect() connections.
    ; http://php.net/oci8.old-oci-close-semantics
    ;oci8.old_oci_close_semantics = Off
    [PostgreSQL]
    ; Allow or prevent persistent links.
    ; http://php.net/pgsql.allow-persistent
    pgsql.allow_persistent = On
    ; Detect broken persistent links always with pg_pconnect().
    ; Auto reset feature requires a little overheads.
    ; http://php.net/pgsql.auto-reset-persistent
    pgsql.auto_reset_persistent = Off
    ; Maximum number of persistent links. -1 means no limit.
    ; http://php.net/pgsql.max-persistent
    pgsql.max_persistent = -1
    ; Maximum number of links (persistent+non persistent). -1 means no limit.
    ; http://php.net/pgsql.max-links
    pgsql.max_links = -1
    ; Ignore PostgreSQL backends Notice message or not.
    ; Notice message logging require a little overheads.
    ; http://php.net/pgsql.ignore-notice
    pgsql.ignore_notice = 0
    ; Log PostgreSQL backends Notice message or not.
    ; Unless pgsql.ignore_notice=0, module cannot log notice message.
    ; http://php.net/pgsql.log-notice
    pgsql.log_notice = 0
    [Sybase-CT]
    ; Allow or prevent persistent links.
    ; http://php.net/sybct.allow-persistent
    sybct.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    ; http://php.net/sybct.max-persistent
    sybct.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    ; http://php.net/sybct.max-links
    sybct.max_links = -1
    ; Minimum server message severity to display.
    ; http://php.net/sybct.min-server-severity
    sybct.min_server_severity = 10
    ; Minimum client message severity to display.
    ; http://php.net/sybct.min-client-severity
    sybct.min_client_severity = 10
    ; Set per-context timeout
    ; http://php.net/sybct.timeout
    ;sybct.timeout=
    ;sybct.packet_size
    ; The maximum time in seconds to wait for a connection attempt to succeed before returning failure.
    ; Default: one minute
    ;sybct.login_timeout=
    ; The name of the host you claim to be connecting from, for display by sp_who.
    ; Default: none
    ;sybct.hostname=
    ; Allows you to define how often deadlocks are to be retried. -1 means "forever".
    ; Default: 0
    ;sybct.deadlock_retry_count=
    [bcmath]
    ; Number of decimal digits for all bcmath functions.
    ; http://php.net/bcmath.scale
    bcmath.scale = 0
    [browscap]
    ; http://php.net/browscap
    ;browscap = extra/browscap.ini
    [Session]
    ; Handler used to store/retrieve data.
    ; http://php.net/session.save-handler
    session.save_handler = files
    ; Argument passed to save_handler. In the case of files, this is the path
    ; where data files are stored. Note: Windows users have to change this
    ; variable in order to use PHP's session functions.
    ; The path can be defined as:
    ; session.save_path = "N;/path"
    ; where N is an integer. Instead of storing all the session files in
    ; /path, what this will do is use subdirectories N-levels deep, and
    ; store the session data in those directories. This is useful if you
    ; or your OS have problems with lots of files in one directory, and is
    ; a more efficient layout for servers that handle lots of sessions.
    ; NOTE 1: PHP will not create this directory structure automatically.
    ; You can use the script in the ext/session dir for that purpose.
    ; NOTE 2: See the section on garbage collection below if you choose to
    ; use subdirectories for session storage
    ; The file storage module creates files using mode 600 by default.
    ; You can change that by using
    ; session.save_path = "N;MODE;/path"
    ; where MODE is the octal representation of the mode. Note that this
    ; does not overwrite the process's umask.
    ; http://php.net/session.save-path
    ;session.save_path = "/tmp"
    ; Whether to use cookies.
    ; http://php.net/session.use-cookies
    session.use_cookies = 1
    ; http://php.net/session.cookie-secure
    ;session.cookie_secure =
    ; This option forces PHP to fetch and use a cookie for storing and maintaining
    ; the session id. We encourage this operation as it's very helpful in combatting
    ; session hijacking when not specifying and managing your own session id. It is
    ; not the end all be all of session hijacking defense, but it's a good start.
    ; http://php.net/session.use-only-cookies
    session.use_only_cookies = 1
    ; Name of the session (used as cookie name).
    ; http://php.net/session.name
    session.name = PHPSESSID
    ; Initialize session on request startup.
    ; http://php.net/session.auto-start
    session.auto_start = 0
    ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
    ; http://php.net/session.cookie-lifetime
    session.cookie_lifetime = 0
    ; The path for which the cookie is valid.
    ; http://php.net/session.cookie-path
    session.cookie_path = /
    ; The domain for which the cookie is valid.
    ; http://php.net/session.cookie-domain
    session.cookie_domain =
    ; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
    ; http://php.net/session.cookie-httponly
    session.cookie_httponly =
    ; Handler used to serialize data. php is the standard serializer of PHP.
    ; http://php.net/session.serialize-handler
    session.serialize_handler = php
    ; Defines the probability that the 'garbage collection' process is started
    ; on every session initialization. The probability is calculated by using
    ; gc_probability/gc_divisor. Where session.gc_probability is the numerator
    ; and gc_divisor is the denominator in the equation. Setting this value to 1
    ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
    ; the gc will run on any give request.
    ; Default Value: 1
    ; Development Value: 1
    ; Production Value: 1
    ; http://php.net/session.gc-probability
    session.gc_probability = 1
    ; Defines the probability that the 'garbage collection' process is started on every
    ; session initialization. The probability is calculated by using the following equation:
    ; gc_probability/gc_divisor. Where session.gc_probability is the numerator and
    ; session.gc_divisor is the denominator in the equation. Setting this value to 1
    ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
    ; the gc will run on any give request. Increasing this value to 1000 will give you
    ; a 0.1% chance the gc will run on any give request. For high volume production servers,
    ; this is a more efficient approach.
    ; Default Value: 100
    ; Development Value: 1000
    ; Production Value: 1000
    ; http://php.net/session.gc-divisor
    session.gc_divisor = 1000
    ; After this number of seconds, stored data will be seen as 'garbage' and
    ; cleaned up by the garbage collection process.
    ; http://php.net/session.gc-maxlifetime
    session.gc_maxlifetime = 1440
    ; NOTE: If you are using the subdirectory option for storing session files
    ; (see session.save_path above), then garbage collection does *not*
    ; happen automatically. You will need to do your own garbage
    ; collection through a shell script, cron entry, or some other method.
    ; For example, the following script would is the equivalent of
    ; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
    ; find /path/to/sessions -cmin +24 | xargs rm
    ; PHP 4.2 and less have an undocumented feature/bug that allows you to
    ; to initialize a session variable in the global scope, even when register_globals
    ; is disabled. PHP 4.3 and later will warn you, if this feature is used.
    ; You can disable the feature and the warning separately. At this time,
    ; the warning is only displayed, if bug_compat_42 is enabled. This feature
    ; introduces some serious security problems if not handled correctly. It's
    ; recommended that you do not use this feature on production servers. But you
    ; should enable this on development servers and enable the warning as well. If you
    ; do not enable the feature on development servers, you won't be warned when it's
    ; used and debugging errors caused by this can be difficult to track down.
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/session.bug-compat-42
    session.bug_compat_42 = Off
    ; This setting controls whether or not you are warned by PHP when initializing a
    ; session value into the global space. session.bug_compat_42 must be enabled before
    ; these warnings can be issued by PHP. See the directive above for more information.
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/session.bug-compat-warn
    session.bug_compat_warn = Off
    ; Check HTTP Referer to invalidate externally stored URLs containing ids.
    ; HTTP_REFERER has to contain this substring for the session to be
    ; considered as valid.
    ; http://php.net/session.referer-check
    session.referer_check =
    ; How many bytes to read from the file.
    ; http://php.net/session.entropy-length
    session.entropy_length = 0
    ; Specified here to create the session id.
    ; http://php.net/session.entropy-file
    ; On systems that don't have /dev/urandom /dev/arandom can be used
    ; On windows, setting the entropy_length setting will activate the
    ; Windows random source (using the CryptoAPI)
    ;session.entropy_file = /dev/urandom
    ; Set to {nocache,private,public,} to determine HTTP caching aspects
    ; or leave this empty to avoid sending anti-caching headers.
    ; http://php.net/session.cache-limiter
    session.cache_limiter = nocache
    ; Document expires after n minutes.
    ; http://php.net/session.cache-expire
    session.cache_expire = 180
    ; trans sid support is disabled by default.
    ; Use of trans sid may risk your users security.
    ; Use this option with caution.
    ; - User may send URL contains active session ID
    ; to other person via. email/irc/etc.
    ; - URL that contains active session ID may be stored
    ; in publically accessible computer.
    ; - User may access your site with the same session ID
    ; always using URL stored in browser's history or bookmarks.
    ; http://php.net/session.use-trans-sid
    session.use_trans_sid = 0
    ; Select a hash function for use in generating session ids.
    ; Possible Values
    ; 0 (MD5 128 bits)
    ; 1 (SHA-1 160 bits)
    ; This option may also be set to the name of any hash function supported by
    ; the hash extension. A list of available hashes is returned by the hash_algos()
    ; function.
    ; http://php.net/session.hash-function
    session.hash_function = 0
    ; Define how many bits are stored in each character when converting
    ; the binary hash data to something readable.
    ; Possible values:
    ; 4 (4 bits: 0-9, a-f)
    ; 5 (5 bits: 0-9, a-v)
    ; 6 (6 bits: 0-9, a-z, A-Z, "-", ",")
    ; Default Value: 4
    ; Development Value: 5
    ; Production Value: 5
    ; http://php.net/session.hash-bits-per-character
    session.hash_bits_per_character = 5
    ; The URL rewriter will look for URLs in a defined set of HTML tags.
    ; form/fieldset are special; if you include them here, the rewriter will
    ; add a hidden <input> field with the info which is otherwise appended
    ; to URLs. If you want XHTML conformity, remove the form entry.
    ; Note that all valid entries require a "=", even if no value follows.
    ; 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"
    ; http://php.net/url-rewriter.tags
    url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
    [MSSQL]
    ; Allow or prevent persistent links.
    mssql.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    mssql.max_persistent = -1
    ; Maximum number of links (persistent+non persistent). -1 means no limit.
    mssql.max_links = -1
    ; Minimum error severity to display.
    mssql.min_error_severity = 10
    ; Minimum message severity to display.
    mssql.min_message_severity = 10
    ; Compatibility mode with old versions of PHP 3.0.
    mssql.compatability_mode = Off
    ; Connect timeout
    ;mssql.connect_timeout = 5
    ; Query timeout
    ;mssql.timeout = 60
    ; Valid range 0 - 2147483647. Default = 4096.
    ;mssql.textlimit = 4096
    ; Valid range 0 - 2147483647. Default = 4096.
    ;mssql.textsize = 4096
    ; Limits the number of records in each batch. 0 = all records in one batch.
    ;mssql.batchsize = 0
    ; Specify how datetime and datetim4 columns are returned
    ; On => Returns data converted to SQL server settings
    ; Off => Returns values as YYYY-MM-DD hh:mm:ss
    ;mssql.datetimeconvert = On
    ; Use NT authentication when connecting to the server
    mssql.secure_connection = Off
    ; Specify max number of processes. -1 = library default
    ; msdlib defaults to 25
    ; FreeTDS defaults to 4096
    ;mssql.max_procs = -1
    ; Specify client character set.
    ; If empty or not set the client charset from freetds.conf is used
    ; This is only used when compiled with FreeTDS
    ;mssql.charset = "ISO-8859-1"
    [Assertion]
    ; Assert(expr); active by default.
    ; http://php.net/assert.active
    ;assert.active = On
    ; Issue a PHP warning for each failed assertion.
    ; http://php.net/assert.warning
    ;assert.warning = On
    ; Don't bail out by default.
    ; http://php.net/assert.bail
    ;assert.bail = Off
    ; User-function to be called if an assertion fails.
    ; http://php.net/assert.callback
    ;assert.callback = 0
    ; Eval the expression with current error_reporting(). Set to true if you want
    ; error_reporting(0) around the eval().
    ; http://php.net/assert.quiet-eval
    ;assert.quiet_eval = 0
    [COM]
    ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
    ; http://php.net/com.typelib-file
    ;com.typelib_file =
    ; allow Distributed-COM calls
    ; http://php.net/com.allow-dcom
    ;com.allow_dcom = true
    ; autoregister constants of a components typlib on com_load()
    ; http://php.net/com.autoregister-typelib
    ;com.autoregister_typelib = true
    ; register constants casesensitive
    ; http://php.net/com.autoregister-casesensitive
    ;com.autoregister_casesensitive = false
    ; show warnings on duplicate constant registrations
    ; http://php.net/com.autoregister-verbose
    ;com.autoregister_verbose = true
    ; The default character set code-page to use when passing strings to and from COM objects.
    ; Default: system ANSI code page
    ;com.code_page=
    [mbstring]
    ; language for internal character representation.
    ; http://php.net/mbstring.language
    ;mbstring.language = Japanese
    ; internal/script encoding.
    ; Some encoding cannot work as internal encoding.
    ; (e.g. SJIS, BIG5, ISO-2022-*)
    ; http://php.net/mbstring.internal-encoding
    ;mbstring.internal_encoding = EUC-JP
    ; http input encoding.
    ; http://php.net/mbstring.http-input
    ;mbstring.http_input = auto
    ; http output encoding. mb_output_handler must be
    ; registered as output buffer to function
    ; http://php.net/mbstring.http-output
    ;mbstring.http_output = SJIS
    ; enable automatic encoding translation according to
    ; mbstring.internal_encoding setting. Inpu

    from what i can gather from various sources, apache should be left alone for the most part, since tooling around with it can cause system instability (in unexperienced hands), whereas php can be upgraded without too many complications as long as one stays away, as you say, from the bleeding edge versions which may be unstable or compatible only with latest os, i.e. tiger. i am still on panther and plan to stay there for a little while longer.
    are there any issues with the php 5.0.x versions and apache? does it matter that much as long as they are more or less within reasonable proximity to one another in terms of date of creation? in other words are they relatively independent and likely to work with one another?
    thanks for the help and quick reply.

  • I can't get video to loop exporting an OAM file and importing into Muse. Seems to ignore all triggers.

    I've tried everything I can think of, but triggers are ignored. I've tested in Safari and Firefox so far. Tested in Muse Preview. Tested in An. Nothing is paying attention to the trigger I have set up.
    I've used a label to get it to loop back to the beginning. I've used zero to get it to loop back. I've searched the web, YouTube, and here looking for answer none will fix this. No errors in the error box BTW. Been back to Lynda.com re-re-viewing videos. All seems fine, but it isn't.
    Website is here: http://www.moviesandfx.com. The animation on the home page is what I want to loop. It plays okay in Safari, has mixed results in Firefox. Not sure yet about IE, I'm on a Mac.
    I'd love to hear ideas to fix this. The workflow is An—>OAM export—>Muse "place"—>Muse publish to ftp.
    Thank you,
    Dan

    I'm having the same problem. I inserted the oam in Dreamweaver, where it loops forever in split and live view. As soon as I view it in a browser (Safari and Chrome), the looping is disabled. There are no console errors.

  • How should I deal with FTP permissions?

    Ok, I'm not sure what would be the best way to deal with this. I have folders set up for several websites that each have a different user that administrates them. So I set each of the intended users home to the website root, and gave them ownership of the folder and it's files. I also have FTP set to chroot to the home directory.
    I have run into a couple problems with this.
    - First, if they were so inclined, the users could log in via SSH or an SCP program and get outside of their home directory. I would prefer that they were unable to. Can I set their shell to ftponly or something as such?
    - Second, I have an on site admin that is often called on by the website clients to make small changes to their site. And I'm not sure how to set up his access so that he can have the ability to FTP in, have full rwx access to the users files, overwrite them, and go about his business without having to than do a chown on the new files so that they are all owned by the end user. Is there an easy way to do this, or should I write a perl script that either triggers on his logout or that he can run, to set the chmod/chown correctly after he's done.

    LavaRider wrote:
    I have to create many LTS for the fact table......
    1 LTS for ProductFact
    1 LTS for ProductFact & PolicyFact (which contain ProductFact and PolicyFact as sources)
    1 LTS for ProductFact , PolicyFact & PolicyCoverFact ........
    and so on.....
    have I understood correctly? Is that what you mean?Yes, the reason why I said to "keep" the firsts fact table in each source is to make the dimension work.
    For example, if the "product dimension" is only linked to "product fact", but not "policy fact" then you won't be able to do a report based on "product dimension" and "policy fact". Right ? To be able to do this report, OBIEE must do a join with "product fact" (this fact table become an intersection table). That's why you will add product fact in the "policy fact" source. Same for others source.
    But the name of "ProductFact & PolicyFact" source can be "policy fact". Because each row of this source is a policy fact.
    For the 3rd table, each row is a "policy cover fact". But to be able to join with "product dimension" and "policy dimension", you need to integrate "policy fact" and "product fact" tables in the logical source.
    and so on.

  • Is it possible to have FTP Conflicts/Collisions with multiple devices?

    I understand that you cannot have multiple webservers both using port 80 on your LAN (use different port # and port forward), but I was wondering if the same is true of multiple FTPs?
    In other words, I have 2 devices ...., a weather web server that FTPs my weather station data to my weather website, and I have the WVC54GCA IP Camera, which I want to use to display weather conditions outside, and FTP to my weather website. Can they both use their default FTP port 21 at the same time? ...., or do I have to change one of them to an alternative port #, other than 21? Is it possible to FTP with a port other than port 21?
    Thanks for any feedback,
    Ed

    thanks Castor. I have the Motorola SBG900 ...., I have not set up the port triggering yet, but both my WVC54GCA and my weather server are FTPing up to my weather website  without any problems so far. I might try the port triggering as a safety net and see if things still work OK.
    Ed

  • Processing Inbound IDOC's from FTP.

    Hi,
             I have an issue where IDOC's (WPUBON01 & DEBMAS01) are being saved in ftp folder and once these IDOC's are saved, we have to process it in SAP System, i would like to know the simple way of having these IDOC's processed in Unix based SAP system as the IDOC's will be coming in at Real time evey minutes or Seconds.
             is there a way to do it with out ABAP process i mean just by using the Unix Scripts or by triggering the SAP background job.
    Thanks in Advance.

    Hi,
    for testing purposes you can trigger inbound IDoc processing in transaction WE16. Otherwise you can schedule program RSEINB00 to periodically import IDoc into system. You can make a copy of that program and made changes if you need to add some extra logic.
    Cheers

  • Muse CC 2014.3 crashing on upload to FTP

    Though I've made updates to my site in before, Muse CC 2014.3 is now crashing on upload to FTP. I have tried to research this, but have yet to see an answer that fits. As I am only uploading changed content to my main home page it should not be difficult for Muse. Perhaps there is something on my end that has caused this situation. The progress bar reaches about 6%, stops and crashes. I have attached the crash report below for review. I have also tried exporting for HTML as well with the same result. FYI: I did try exporting to HTML a practice website and did the "preview this site in browser..." and was successful. So it initially appears that there is something in my site. The problem with that though is that I am only deleting an element, not adding or changing items.   HELP!!
    rocess:    
    Adobe Muse CC [22250]
    Path:       
    /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/MacOS/Adobe Muse CC
    Identifier: 
    com.adobe.Muse.application
    Version:    
    2014.3.2 (2014.3.2.11)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [182]
    Responsible:
    Adobe Muse CC [22250]
    User ID:    
    501
    Date/Time:  
    2015-04-23 16:09:28.283 -0500
    OS Version: 
    Mac OS X 10.9.5 (13F1077)
    Report Version:  11
    Anonymous UUID:  86F3BD1C-38E8-EEFC-CBBD-9CD5BBF5D021
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    terminating with uncaught exception of type AIDE::Exception: std::exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib  
    0x00007fff8c748866 __pthread_kill + 10
    1   libsystem_pthread.dylib 
    0x00007fff9671635c pthread_kill + 92
    2   libsystem_c.dylib       
    0x00007fff97a97b1a abort + 125
    3   libc++abi.dylib         
    0x00007fff95bccf31 abort_message + 257
    4   libc++abi.dylib         
    0x00007fff95bf293a default_terminate_handler() + 240
    5   libobjc.A.dylib         
    0x00007fff8e0bf322 _objc_terminate() + 124
    6   libc++abi.dylib         
    0x00007fff95bf01d1 std::__terminate(void (*)()) + 8
    7   libc++abi.dylib         
    0x00007fff95befc5b __cxa_throw + 124
    8   com.adobe.Muse.application  
    0x0000000101b612c6 AIDE::Decoder::Decoder(AIDE::Lib&, AIDE::InputStream&, AIDE::DecodeOptions&) + 102
    9   com.adobe.Muse.application  
    0x0000000101b5756a MuseDOMAIDEProviderObj::ReEncode(MuseASObject, int, int, EncodingFormat) + 906
    10  com.adobe.Muse.application  
    0x0000000101b5c1b1 MuseDOMAIDEProviderObj::Handler::ReEncodeAsJPEGAsync(MuseASArgs const&) + 433
    11  com.adobe.Muse.application  
    0x0000000101ae25ec MuseHandlerObj::CallMethod(MuseKey const&, MuseASArgs const&) + 124
    12  com.adobe.Muse.application  
    0x0000000101af4e60 MuseDOMObjectObj::CallMethod(MuseAtom const&, MuseASArgs const&) + 256
    13  com.adobe.Muse.application  
    0x0000000101af334c MuseDOMExtensionObj::APEObjectInvokeMethod(Opaque_APEPlayer*, void*, void*, APEOpaqueAtom*, unsigned int, APEOpaqueAtom* const*) + 348
    14  com.adobe.ape.engine    
    0x000000010a32d5b9 avmplus::APXHostObject::__call(avmplus::String*, avmplus::ArrayObject*) const + 329 (APXHostObjectGlue.cpp:531)
    15  com.adobe.ape.engine    
    0x000000010a8bdb19 avmplus::BaseExecMgr::debugEnterExitWrapper32(avmplus::MethodEnv*, int, unsigned int*) + 57 (exec.cpp:431)
    16  ???                     
    0x000000011ddf15b2 0 + 4796126642
    17  ???                     
    0x000000011d33f0b2 0 + 4784910514
    18  ???                     
    0x000000011d36e39b 0 + 4785103771
    19  com.adobe.ape.engine    
    0x000000010a8bcf93 avmplus::BaseExecMgr::verifyEnterGPR(avmplus::MethodEnv*, int, unsigned int*) + 131 (exec.cpp:296)
    20  ???                     
    0x000000011d36e6ea 0 + 4785104618
    21  com.adobe.ape.engine    
    0x000000010a8bde81 avmplus::BaseExecMgr::endCoerce(avmplus::MethodEnv*, int, unsigned int*, avmplus::MethodSignature const*) + 65 (exec.cpp:726)
    22  com.adobe.ape.engine    
    0x000000010a8bea24 avmplus::BaseExecMgr::invokeGeneric(avmplus::MethodEnv*, int, long long*) + 292 (exec.cpp:937)
    23  com.adobe.ape.engine    
    0x000000010a8bd044 avmplus::BaseExecMgr::verifyInvoke(avmplus::MethodEnv*, int, long long*) + 132 (exec.cpp:312)
    24  ???                     
    0x000000011d36f495 0 + 4785108117
    25  com.adobe.ape.engine    
    0x000000010a8bde81 avmplus::BaseExecMgr::endCoerce(avmplus::MethodEnv*, int, unsigned int*, avmplus::MethodSignature const*) + 65 (exec.cpp:726)
    26  com.adobe.ape.engine    
    0x000000010a8bea24 avmplus::BaseExecMgr::invokeGeneric(avmplus::MethodEnv*, int, long long*) + 292 (exec.cpp:937)
    27  com.adobe.ape.engine    
    0x000000010a8bd044 avmplus::BaseExecMgr::verifyInvoke(avmplus::MethodEnv*, int, long long*) + 132 (exec.cpp:312)
    28  com.adobe.ape.engine    
    0x000000010a3ca19d avmplus::EventDispatcherObject::DoDispatchEvent(avmplus::EventObject*, avmplus::PlayerAvmCore*, bool) + 685 (EventDispatcherGlue.cpp:1766)
    29  com.adobe.ape.engine    
    0x000000010a3c89de avmplus::EventDispatcherObject::dispatchEventFunction(avmplus::EventObject*) + 318 (EventGlue.h:46)
    30  com.adobe.ape.engine    
    0x000000010a4f9295 avmplus::NativeID::avmglue_b2a_oo_thunk(avmplus::MethodEnv*, unsigned int, long long*) + 37 (avmglue.cpp:32877)
    31  com.adobe.ape.engine    
    0x000000010a8bdb19 avmplus::BaseExecMgr::debugEnterExitWrapper32(avmplus::MethodEnv*, int, unsigned int*) + 57 (exec.cpp:431)
    32  ???                     
    0x000000010b6192cb 0 + 4485911243
    33  ???                     
    0x00000001123637d1 0 + 4600510417
    34  ???                     
    0x0000000112784ab6 0 + 4604840630
    35  ???                     
    0x000000011277bcdb 0 + 4604804315
    36  com.adobe.ape.engine    
    0x000000010a3ca19d avmplus::EventDispatcherObject::DoDispatchEvent(avmplus::EventObject*, avmplus::PlayerAvmCore*, bool) + 685 (EventDispatcherGlue.cpp:1766)
    37  com.adobe.ape.engine    
    0x000000010a3c970b avmplus::EventDispatcherObject::NativeConstructAndDispatchEvent(avmplus::List<MMgc::GCWea kRef*, (avmplus::ListElementType)1, avmplus::ListAllocPolicy_GC>*, bool&, int, char const*, ...) + 219 (EventGlue.h:46)
    38  com.adobe.ape.engine    
    0x000000010a3ca7c9 avmplus::EventDispatcherObject::DispatchBaseEvent(avmplus::String*, bool, bool) + 345 (EventDispatcherGlue.cpp:1998)
    39  com.adobe.ape.engine    
    0x000000010a6ead54 avmplus::URLStreamObject::OnClose() + 180 (URLStreamGlue.cpp:1188)
    40  com.adobe.ape.engine    
    0x000000010a6eac3a avmplus::DataURLStream::StreamClose() + 298 (async.h:119)
    41  com.adobe.ape.engine    
    0x000000010a36de2d PlatformURLStream::NotifyDone() + 93 (cocoa_urlstream.mm:1457)
    42  com.adobe.ape.engine    
    0x000000010a3705d2 NetworkASyncMessage<PlatformURLStream::NotifyFinishedLoadingMessage, PlatformURLStream>::Handler(NetworkASync*) + 34 (cocoa_urlstream.mm:1818)
    43  com.adobe.ape.engine    
    0x000000010a334f37 ASyncManager::DoProcessASyncMessages(int) + 615 (async.cpp:506)
    44  com.adobe.ape.engine    
    0x000000010a64e89c CorePlayer::DoPlay_EnterFrameStart() + 188 (splayer.h:514)
    45  com.adobe.ape.engine    
    0x000000010a65044b CorePlayer::DoPlay(bool, bool) + 251 (splayer.cpp:12617)
    46  com.adobe.ape.engine    
    0x000000010a687d1b PlatformPlayer::DoTick() + 219 (swfl_macplayer.mm:2267)
    47  com.apple.CoreFoundation
    0x00007fff8cc155b1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    48  com.apple.CoreFoundation
    0x00007fff8cc06c62 __CFRunLoopDoSources0 + 242
    49  com.apple.CoreFoundation
    0x00007fff8cc063ef __CFRunLoopRun + 831
    50  com.apple.CoreFoundation
    0x00007fff8cc05e75 CFRunLoopRunSpecific + 309
    51  com.apple.HIToolbox     
    0x00007fff95ec1a0d RunCurrentEventLoopInMode + 226
    52  com.apple.HIToolbox     
    0x00007fff95ec1685 ReceiveNextEventCommon + 173
    53  com.apple.HIToolbox     
    0x00007fff95ec15bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    54  com.apple.AppKit        
    0x00007fff909c324e _DPSNextEvent + 1434
    55  com.apple.AppKit        
    0x00007fff909c289b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    56  com.adobe.Muse.application  
    0x0000000101c12e0b dv_utils::BlockWaitingForNextEvent(double) + 139
    57  com.adobe.Muse.application  
    0x0000000101af7781 MuseDialogHost::DoRunModal() + 1057
    58  com.adobe.Muse.application  
    0x0000000101afa197 MuseDialogHost::ModalLoopRunner::DoRun() + 23
    59  com.adobe.Muse.application  
    0x0000000101ac56ec IMuseIdleProc::Run() const + 108
    60  com.adobe.Muse.application  
    0x0000000101b71bfe MuseIdleManager::HandleTick(unsigned int, char const*) + 1278
    61  com.adobe.Muse.application  
    0x0000000101b71693 MuseIdle::DoIdle() + 51
    62  com.adobe.Muse.application  
    0x0000000101ad01ae MuseApp::DoIdle() + 14
    63  com.adobe.dvacore.framework 
    0x00000001027312ec int dvacore::config::ErrorManager::ExecuteFunction<void>(boost::function0<void>*, void*) + 28
    64  com.adobe.Muse.application  
    0x0000000101b41573 MuseErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost::function0<int>) + 83
    65  com.adobe.dvacore.framework 
    0x0000000102731438 void dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<void>(boost::f unction0<void>, bool*) + 136
    66  com.adobe.dvacore.framework 
    0x00000001027327d5 void dvacore::config::ExecuteTopLevelFunction<void>(boost::function0<void>, bool*) + 165
    67  com.adobe.exo.framework 
    0x00000001038e939c -[ExoMacApplication idle:] + 140
    68  com.apple.Foundation    
    0x00007fff8d346714 __NSFireTimer + 96
    69  com.apple.CoreFoundation
    0x00007fff8cc4b3e4 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    70  com.apple.CoreFoundation
    0x00007fff8cc4af1f __CFRunLoopDoTimer + 1151
    71  com.apple.CoreFoundation
    0x00007fff8ccbc5aa __CFRunLoopDoTimers + 298
    72  com.apple.CoreFoundation
    0x00007fff8cc066a5 __CFRunLoopRun + 1525
    73  com.apple.CoreFoundation
    0x00007fff8cc05e75 CFRunLoopRunSpecific + 309
    74  com.apple.HIToolbox     
    0x00007fff95ec1a0d RunCurrentEventLoopInMode + 226
    75  com.apple.HIToolbox     
    0x00007fff95ec1685 ReceiveNextEventCommon + 173
    76  com.apple.HIToolbox     
    0x00007fff95ec15bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    77  com.apple.AppKit        
    0x00007fff909c324e _DPSNextEvent + 1434
    78  com.apple.AppKit        
    0x00007fff909c289b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    79  com.apple.AppKit        
    0x00007fff909b699c -[NSApplication run] + 553
    80  com.adobe.exo.framework 
    0x00000001038e8148 exo::app::OS_AppBase::RunEventLoop() + 56
    81  com.adobe.Muse.application  
    0x0000000101acd678 MuseApp::RunEventLoop() + 24
    82  com.adobe.Muse.application  
    0x0000000101ac4f62 main + 594
    83  com.adobe.Muse.application  
    0x0000000101ac4cd4 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x00007fff8c749662 kevent64 + 10
    1   libdispatch.dylib       
    0x00007fff8d617421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib       
    0x00007fff8d617136 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib  
    0x00007fff8c748716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff96717c3b _pthread_cond_wait + 727
    2   com.adobe.ape.engine    
    0x000000010a4ef27e TThreadWait::Wait(unsigned int) + 62 (OSXMiniThreads.cpp:260)
    3   com.adobe.ape.engine    
    0x000000010a33882e BGThreadFunc(void*) + 78 (bgthread.cpp:27)
    4   com.adobe.ape.engine    
    0x000000010a4ef07a TSafeThread::RunHelper() + 106 (OSXMiniThreads.cpp:190)
    5   com.adobe.ape.engine    
    0x000000010a4ef0ed TSafeThread::Run(EThreadType) + 61 (GCHeap-inlines.h:90)
    6   com.adobe.ape.engine    
    0x000000010a4eedde ThreadStartProc(void*) + 62 (OSXMiniThreads.cpp:80)
    7   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib  
    0x00007fff8c748716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff96717c3b _pthread_cond_wait + 727
    2   com.adobe.ape.engine    
    0x000000010a4ef27e TThreadWait::Wait(unsigned int) + 62 (OSXMiniThreads.cpp:260)
    3   com.adobe.ape.engine    
    0x000000010a33882e BGThreadFunc(void*) + 78 (bgthread.cpp:27)
    4   com.adobe.ape.engine    
    0x000000010a4ef07a TSafeThread::RunHelper() + 106 (OSXMiniThreads.cpp:190)
    5   com.adobe.ape.engine    
    0x000000010a4ef0ed TSafeThread::Run(EThreadType) + 61 (GCHeap-inlines.h:90)
    6   com.adobe.ape.engine    
    0x000000010a4eedde ThreadStartProc(void*) + 62 (OSXMiniThreads.cpp:80)
    7   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib  
    0x00007fff8c748716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff96717c3b _pthread_cond_wait + 727
    2   com.adobe.ape.engine    
    0x000000010a4ef27e TThreadWait::Wait(unsigned int) + 62 (OSXMiniThreads.cpp:260)
    3   com.adobe.ape.engine    
    0x000000010a33882e BGThreadFunc(void*) + 78 (bgthread.cpp:27)
    4   com.adobe.ape.engine    
    0x000000010a4ef07a TSafeThread::RunHelper() + 106 (OSXMiniThreads.cpp:190)
    5   com.adobe.ape.engine    
    0x000000010a4ef0ed TSafeThread::Run(EThreadType) + 61 (GCHeap-inlines.h:90)
    6   com.adobe.ape.engine    
    0x000000010a4eedde ThreadStartProc(void*) + 62 (OSXMiniThreads.cpp:80)
    7   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib  
    0x00007fff8c748716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff96717c3b _pthread_cond_wait + 727
    2   com.adobe.ape.engine    
    0x000000010a4ef27e TThreadWait::Wait(unsigned int) + 62 (OSXMiniThreads.cpp:260)
    3   com.adobe.ape.engine    
    0x000000010a33882e BGThreadFunc(void*) + 78 (bgthread.cpp:27)
    4   com.adobe.ape.engine    
    0x000000010a4ef07a TSafeThread::RunHelper() + 106 (OSXMiniThreads.cpp:190)
    5   com.adobe.ape.engine    
    0x000000010a4ef0ed TSafeThread::Run(EThreadType) + 61 (GCHeap-inlines.h:90)
    6   com.adobe.ape.engine    
    0x000000010a4eedde ThreadStartProc(void*) + 62 (OSXMiniThreads.cpp:80)
    7   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib  
    0x00007fff8c748716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff96717c77 _pthread_cond_wait + 787
    2   com.adobe.ape.engine    
    0x000000010a4eee95 TThreadWait::DoSleep(int) + 149 (OSXMiniThreads.cpp:306)
    3   com.adobe.ape.engine    
    0x000000010a37448a DoActionsManager::RunThreadBody(void*) + 58 (coreasdebug.cpp:77)
    4   com.adobe.ape.engine    
    0x000000010a4ef07a TSafeThread::RunHelper() + 106 (OSXMiniThreads.cpp:190)
    5   com.adobe.ape.engine    
    0x000000010a4ef0ed TSafeThread::Run(EThreadType) + 61 (GCHeap-inlines.h:90)
    6   com.adobe.ape.engine    
    0x000000010a4eedde ThreadStartProc(void*) + 62 (OSXMiniThreads.cpp:80)
    7   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib  
    0x00007fff8c748716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff96717c77 _pthread_cond_wait + 787
    2   com.adobe.ape.engine    
    0x000000010a4ef2b4 TThreadWait::Wait(unsigned int) + 116 (OSXMiniThreads.cpp:268)
    3   com.adobe.ape.engine    
    0x000000010a4fc406 avmplus::PlayerAvmCore::ScriptTimeoutProc(void*) + 310 (PlayerAvmCore.cpp:1144)
    4   com.adobe.ape.engine    
    0x000000010a4ef07a TSafeThread::RunHelper() + 106 (OSXMiniThreads.cpp:190)
    5   com.adobe.ape.engine    
    0x000000010a4ef0ed TSafeThread::Run(EThreadType) + 61 (GCHeap-inlines.h:90)
    6   com.adobe.ape.engine    
    0x000000010a4eedde ThreadStartProc(void*) + 62 (OSXMiniThreads.cpp:80)
    7   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib  
    0x00007fff8c748716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff96717c77 _pthread_cond_wait + 787
    2   com.adobe.ape.engine    
    0x000000010a4ef2b4 TThreadWait::Wait(unsigned int) + 116 (OSXMiniThreads.cpp:268)
    3   com.adobe.ape.engine    
    0x000000010a65b73f CorePlayer::CoreLoop() + 223 (splayer.cpp:23706)
    4   com.adobe.ape.engine    
    0x000000010a4ef07a TSafeThread::RunHelper() + 106 (OSXMiniThreads.cpp:190)
    5   com.adobe.ape.engine    
    0x000000010a4ef0ed TSafeThread::Run(EThreadType) + 61 (GCHeap-inlines.h:90)
    6   com.adobe.ape.engine    
    0x000000010a4eedde ThreadStartProc(void*) + 62 (OSXMiniThreads.cpp:80)
    7   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib  
    0x00007fff8c744a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff8c743d18 mach_msg + 64
    2   com.apple.CoreFoundation
    0x00007fff8cc06f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation
    0x00007fff8cc06539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation
    0x00007fff8cc05e75 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit        
    0x00007fff90b6305e _NSEventThread + 144
    6   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    7   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    8   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 10:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib  
    0x00007fff8c744a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff8c743d18 mach_msg + 64
    2   com.apple.CoreFoundation
    0x00007fff8cc06f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation
    0x00007fff8cc06539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation
    0x00007fff8cc05e75 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation    
    0x00007fff8d348f87 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation    
    0x00007fff8d348d8b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 11:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib  
    0x00007fff8c7489aa __select + 10
    1   com.apple.CoreFoundation
    0x00007fff8cc52a03 __CFSocketManager + 867
    2   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    3   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    4   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib  
    0x00007fff8c748e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff96716f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff96719fb9 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib  
    0x00007fff8c748e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff96716f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff96719fb9 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib  
    0x00007fff8c744a56 semaphore_wait_trap + 10
    1   com.adobe.AIDE          
    0x000000010421e1e2 CTThreading::OSSemaphore::Wait() + 16
    2   com.adobe.AIDE          
    0x000000010421d28a CTThreading::ThreadSafeQueue::Dequeue() + 22
    3   com.adobe.AIDE          
    0x000000010421d7d4 CTThreading::WorkerThread::Start() + 38
    4   com.adobe.AIDE          
    0x000000010421cfda CTThreading::PthreadStart(void*) + 14
    5   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib  
    0x00007fff8c744a56 semaphore_wait_trap + 10
    1   com.adobe.AIDE          
    0x000000010421e1e2 CTThreading::OSSemaphore::Wait() + 16
    2   com.adobe.AIDE          
    0x000000010421d28a CTThreading::ThreadSafeQueue::Dequeue() + 22
    3   com.adobe.AIDE          
    0x000000010421d7d4 CTThreading::WorkerThread::Start() + 38
    4   com.adobe.AIDE          
    0x000000010421cfda CTThreading::PthreadStart(void*) + 14
    5   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib  
    0x00007fff8c744a56 semaphore_wait_trap + 10
    1   com.adobe.AIDE          
    0x000000010421e1e2 CTThreading::OSSemaphore::Wait() + 16
    2   com.adobe.AIDE          
    0x000000010421d28a CTThreading::ThreadSafeQueue::Dequeue() + 22
    3   com.adobe.AIDE          
    0x000000010421d7d4 CTThreading::WorkerThread::Start() + 38
    4   com.adobe.AIDE          
    0x000000010421cfda CTThreading::PthreadStart(void*) + 14
    5   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib  
    0x00007fff8c744a56 semaphore_wait_trap + 10
    1   com.adobe.AIDE          
    0x000000010421e1e2 CTThreading::OSSemaphore::Wait() + 16
    2   com.adobe.AIDE          
    0x000000010421d28a CTThreading::ThreadSafeQueue::Dequeue() + 22
    3   com.adobe.AIDE          
    0x000000010421d7d4 CTThreading::WorkerThread::Start() + 38
    4   com.adobe.AIDE          
    0x000000010421cfda CTThreading::PthreadStart(void*) + 14
    5   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib  
    0x00007fff8c744a56 semaphore_wait_trap + 10
    1   com.adobe.AIDE          
    0x000000010421e1e2 CTThreading::OSSemaphore::Wait() + 16
    2   com.adobe.AIDE          
    0x000000010421d28a CTThreading::ThreadSafeQueue::Dequeue() + 22
    3   com.adobe.AIDE          
    0x000000010421d7d4 CTThreading::WorkerThread::Start() + 38
    4   com.adobe.AIDE          
    0x000000010421cfda CTThreading::PthreadStart(void*) + 14
    5   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib  
    0x00007fff8c744a56 semaphore_wait_trap + 10
    1   com.adobe.AIDE          
    0x000000010421e1e2 CTThreading::OSSemaphore::Wait() + 16
    2   com.adobe.AIDE          
    0x000000010421d28a CTThreading::ThreadSafeQueue::Dequeue() + 22
    3   com.adobe.AIDE          
    0x000000010421d7d4 CTThreading::WorkerThread::Start() + 38
    4   com.adobe.AIDE          
    0x000000010421cfda CTThreading::PthreadStart(void*) + 14
    5   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib  
    0x00007fff8c744a56 semaphore_wait_trap + 10
    1   com.adobe.AIDE          
    0x000000010421e1e2 CTThreading::OSSemaphore::Wait() + 16
    2   com.adobe.AIDE          
    0x000000010421d28a CTThreading::ThreadSafeQueue::Dequeue() + 22
    3   com.adobe.AIDE          
    0x000000010421d7d4 CTThreading::WorkerThread::Start() + 38
    4   com.adobe.AIDE          
    0x000000010421cfda CTThreading::PthreadStart(void*) + 14
    5   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib  
    0x00007fff8c744a56 semaphore_wait_trap + 10
    1   com.adobe.AIDE          
    0x000000010421e1e2 CTThreading::OSSemaphore::Wait() + 16
    2   com.adobe.AIDE          
    0x000000010421d28a CTThreading::ThreadSafeQueue::Dequeue() + 22
    3   com.adobe.AIDE          
    0x000000010421d7d4 CTThreading::WorkerThread::Start() + 38
    4   com.adobe.AIDE          
    0x000000010421cfda CTThreading::PthreadStart(void*) + 14
    5   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib  
    0x00007fff8c748716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff96717c77 _pthread_cond_wait + 787
    2   com.adobe.ape.engine    
    0x000000010a336c51 BackgroundWorkManager::ThreadProc() + 289 (OSXThreadUtilities.h:185)
    3   com.adobe.ape.engine    
    0x000000010a3369de BackgroundWorkManager::ThreadProc(void*) + 14 (async.h:110)
    4   com.adobe.ape.engine    
    0x000000010a4ef07a TSafeThread::RunHelper() + 106 (OSXMiniThreads.cpp:190)
    5   com.adobe.ape.engine    
    0x000000010a4ef0ed TSafeThread::Run(EThreadType) + 61 (GCHeap-inlines.h:90)
    6   com.adobe.ape.engine    
    0x000000010a4eedde ThreadStartProc(void*) + 62 (OSXMiniThreads.cpp:80)
    7   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib  
    0x00007fff8c748e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff96716f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff96719fb9 start_wqthread + 13
    Thread 24:
    0   libsystem_kernel.dylib  
    0x00007fff8c748716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff96717c77 _pthread_cond_wait + 787
    2   com.adobe.ape.engine    
    0x000000010a336c51 BackgroundWorkManager::ThreadProc() + 289 (OSXThreadUtilities.h:185)
    3   com.adobe.ape.engine    
    0x000000010a3369de BackgroundWorkManager::ThreadProc(void*) + 14 (async.h:110)
    4   com.adobe.ape.engine    
    0x000000010a4ef07a TSafeThread::RunHelper() + 106 (OSXMiniThreads.cpp:190)
    5   com.adobe.ape.engine    
    0x000000010a4ef0ed TSafeThread::Run(EThreadType) + 61 (GCHeap-inlines.h:90)
    6   com.adobe.ape.engine    
    0x000000010a4eedde ThreadStartProc(void*) + 62 (OSXMiniThreads.cpp:80)
    7   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff7d6ec310  rcx: 0x00007fff5e135af8  rdx: 0x0000000000000000
      rdi: 0x0000000000000707  rsi: 0x0000000000000006  rbp: 0x00007fff5e135b20  rsp: 0x00007fff5e135af8
       r8: 0x00007fff95bf392c   r9: 0x00007fff97abf8d0  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x00007fff5e135c80  r13: 0x0000600000304f18  r14: 0x0000000000000006  r15: 0x00007fff5e135b60
      rip: 0x00007fff8c748866  rfl: 0x0000000000000206  cr2: 0x000000010acc40e8
    Logical CPU:
    0
    Error Code: 
    0x02000148
    Trap Number:
    133
    Binary Images:
    0x101ac3000 -   
    0x102100fe7 +com.adobe.Muse.application (2014.3.2 - 2014.3.2.11) <37336507-6525-303C-AE2C-A6E4901A1228> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/MacOS/Adobe Muse CC
    0x102675000 -   
    0x10267bff7 +com.adobe.boost_date_time.framework (7.0.0 - 7.0.0.0) <E23D3FA5-0F1C-358B-B7AE-3EA0F1041610> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
    0x102699000 -   
    0x1026a5fff +com.adobe.boost_signals.framework (7.0.0 - 7.0.0.0) <270C06CE-CA4D-3BFB-ABB5-8E123BC39295> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
    0x1026c6000 -   
    0x1026c8fff +com.adobe.boost_system.framework (7.0.0 - 7.0.0.0) <02064CC7-B140-39BC-A327-63A16AC6C2A2> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
    0x1026d7000 -   
    0x1026e5fff +com.adobe.boost_threads.framework (7.0.0 - 7.0.0.0) <E6AB959B-255C-3A31-9F03-28CEBA9AF869> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
    0x102708000 -   
    0x102996fff +com.adobe.dvacore.framework (8.0.0 - 8.0.0.0) <A9B99355-C620-3986-9671-A6FDC570E084> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x102bef000 -   
    0x1030cbfff +com.adobe.dvaui.framework (8.0.0 - 8.0.0.0) <7F350138-ABF8-395F-8287-4F1F59A1A861> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x10370a000 -   
    0x1037c8fff +com.adobe.dvaworkspace.framework (8.0.0 - 8.0.0.0) <9621117F-85CF-3790-90FB-3044238B3FEE> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
    0x1038e0000 -   
    0x1039aafff +com.adobe.exo.framework (8.0.0 - 8.0.0.0) <78272CC5-C266-3898-93FE-8A8192C3752A> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/exo.framework/Versions/A/exo
    0x103b08000 -   
    0x103b94ff7 +com.adobe.headlights.LogSessionFramework (7.2.1.3399) <8033183B-8259-3AF1-B3D8-8AC48847F90E> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x103c06000 -   
    0x103c0bfff +com.adobe.ape.shim (3.4.0.1 - 3.4.0.1) <BC3B0DE4-5455-3A88-AECA-E5D3A1518691> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x103c14000 -   
    0x103c34ff7 +com.adobe.dvaflashview.framework (8.0.0 - 8.0.0.0) <F52B4DD4-7445-35F3-BB56-57A7F9063E42> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
    0x103c61000 -   
    0x103c7dff7 +com.adobe.BIB (AdobeBIB 1.2.03.33657 - 1.2.03.33657) <4F6DE96A-F039-3052-96D7-7474BDCC5BA6> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x103c8b000 -   
    0x103cafff7 +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.33608 - 3.8.0.33608) <9A59CA19-C18D-3055-A6DE-3E09715D2D31> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExp at
    0x103cd5000 -   
    0x103e80fef +libcurl.4.dylib (0) <B1F9D821-FB66-331A-B685-CCADEDDFACBC> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/libcurl.4.dylib
    0x103f12000 -   
    0x10410cfff +com.adobe.owl (AdobeOwl version 5.2.3 - 5.2.3) <1B7A9EA5-54F1-3520-8A3A-04DE84986242> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x104157000 -   
    0x104291ff7 +com.adobe.AIDE (1.5.0 - 1.5.0.33698) <622F1E1E-6A89-3BEA-9243-9C3B80132E93> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/AIDE.framework/Versions/A/AIDE
    0x104306000 -   
    0x1043abff7 +com.adobe.boost_regex.framework (7.0.0 - 7.0.0.0) <F4006FE0-FB37-31F3-9F2D-D4B74F499A4A> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
    0x104444000 -   
    0x10459efff +com.adobe.linguistic.LinguisticManager (8.0.0 - 20256) <65F0E23D-218B-3365-890E-249E085586B0> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x1045f2000 -   
    0x104926ff7 +com.adobe.dvaadameve.framework (8.0.0 - 8.0.0.0) <CDBE4831-F495-3A22-8CB8-BA29CBF2450A> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x104f7b000 -   
    0x104f89fff +com.adobe.boost_filesystem.framework (7.0.0 - 7.0.0.0) <4F542626-E61E-3AD6-83A4-F54CE23AD50F> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesystem
    0x104fa3000 -   
    0x1050a2fff +com.adobe.amtlib (8.0.0.122 - 8.0.0.122) <3793FBF6-1FED-357D-96EF-5C17B2F7A371> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x1050b8000 -   
    0x105dfdfff +com.adobe.ICUData (4.0 - 3.61) <01D90725-4B10-312C-9546-9C0CCCA1B7BB> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
    0x105e12000 -   
    0x105f08ff7 +com.adobe.ICUUnicode (4.0 - 3.61) <2352E6C8-3431-3A99-92B9-382E85A018AC> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
    0x10797e000 -   
    0x107986ff3  libCGCMS.A.dylib (599.35.6) <09F33B9F-098A-340A-8717-E3BA6849470E> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
    0x107ab2000 -   
    0x107acefff  libJapaneseConverter.dylib (61) <94EF6A2F-F596-3638-A3DC-CF03567D9427> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x107ad3000 -   
    0x107af4ff7  libKoreanConverter.dylib (61) <22EEBBDB-A2F2-3985-B9C7-53BFE2B02D08> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x107af9000 -   
    0x107b08fff  libSimplifiedChineseConverter.dylib (61) <F5827491-A4E3-3471-A540-8D1FE241FD99> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x107b0c000 -   
    0x107b1efff  libTraditionalChineseConverter.dylib (61) <A182514D-426F-3D5F-BA69-4C4A4680ECB8> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x107c2f000 -   
    0x107c57ffb  libRIP.A.dylib (599.35.6) <45A8594F-906E-3EAE-87D4-BA1DB091C690> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x107c67000 -   
    0x107c6affa  libCGXType.A.dylib (599.35.6) <7DAB1A62-D475-37F1-8234-07649906E234> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x107c7f000 -   
    0x107ca3ff7 +com.adobe.ape (3.4.0.1 - 3.4.0.1) <2147737B-46A8-3BB5-A820-FB972BBA6A92> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/APE/adbeapecore.framework/adbeapecore
    0x107cb0000 -   
    0x107cb4fff  com.apple.agl (3.2.3 - AGL-3.2.3) <9851E4CC-DA6B-3AF4-9B06-61BAC289572D> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x107cdf000 -   
    0x107ce3ffd  com.apple.audio.AppleHDAHALPlugIn (2.6.3 - 2.6.3f4) <2EB88B27-FA19-3C0C-AA06-7FB8BC56694E> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0x10a268000 -   
    0x10a2a1ff7 +com.adobe.pip (7.2.1.3399) <9E80366E-2A40-34CA-AAE3-2CA50F5F8505> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/AdobePIP.framework/AdobePIP
    0x10a2ab000 -   
    0x10a2eaff7 +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 8.0.0.14 - 8.0.0.14) <FC7DECBD-48F6-3E2F-8E40-42F19885B415> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotificatio ns
    0x10a306000 -   
    0x10afc5fc7 +com.adobe.ape.engine (3.4.0.1 - 3.4.0.1) <86A1465A-76D8-3800-A106-0EE376AAD805> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/APE/adbeapecore.framework/Libraries/adbeapeengine.bundle/Con tents/MacOS/adbeapeengine
    0x10e455000 -   
    0x10e4f8ff7  ColorSyncDeprecated.dylib (426) <1EBD0729-A174-3EA5-B226-DE63C2E89D14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x112fa4000 -   
    0x1130b3ff7 +IMSLib.dylib (9.0.1.5 - 9.0.1.5) <AC77A2DA-B4AC-3F26-95C6-E649631A0A99> /Library/Application Support/Adobe/*/IMSLib.dylib
    0x11316b000 -   
    0x113171fff  com.apple.SymptomReporter (1.0 - 1) <F4638872-23B4-3A50-8BBF-EC270E926C1B> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomReporter.framework /SymptomReporter
    0x114992000 -   
    0x114bc6fff +com.adobe.adobehunspellplugin2 (1.0) <0E4D2C74-7368-32C3-8D29-AB1A7CCD837F> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Resources/Linguistics/Providers/Plugins2/AdobeHunspellPlugin.bundle/Con tents/MacOS/AdobeHunspellPlugin
    0x7fff6dd03000 -
    0x7fff6dd36817  dyld (239.4) <7AD43B9B-5CEA-3C7E-9836-A06909F9CA56> /usr/lib/dyld
    0x7fff8bed6000 -
    0x7fff8bed9fff  com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff8c448000 -
    0x7fff8c5e3ff8  com.apple.CFNetwork (673.5 - 673.5) <EF4DA617-D442-327A-9575-A75111A0A742> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff8c634000 -
    0x7fff8c659ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8c65a000 -
    0x7fff8c662fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
    0x7fff8c663000 -
    0x7fff8c6b1fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
    0x7fff8c6b2000 -
    0x7fff8c6b2fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.frame

    Muse is crashing while attempting to decompress an image in your site. It may be an external image file, or image data embedded with the .muse file.
    It would be helpful to know whether the crash occurs if the links to the external files are broken. if you rename the folder containing the images and open and output your file without fixing the links, does the crash still occur? If so, that would indicate the crash is triggered by image data within the .muse file. If that's the situation we'll need to have you send us the .muse file so we can further diagnose and repair the problem. If the crash doesn't occur with the links broken, then it's being triggered by an external image file. By re-linking sets of files you may be able to identify the problem file. Assuming the image can be opened in Photoshop without errors, opening it in PS and re-saving will avoid the crash. (If it does turn out to be an external image file, we'd be grateful if you could send us a copy of it. If it's malformed, it should result in an error message and not a crash.)
    You can send files to [email protected] along with a link to this thread for context. If the file is larger than 20Mb you can use a service like Adobe SendNow, Dropbox, WeTransfer, etc. (If you use a service, please include your return e-mail address in the body of the message, since not all services include it in the sharing invite they send.) Thanks.

  • ERROR IN FTP TO RFC SCENARIO.

    Hi,
    I am new to xi.I am trying to post data in R/3 system.
    I have one client configured as business system.I am loading xml file on ftp server.Sender channel is haveing file adapter . I have one reciever channel using RFC adapter.I am getting the following error :
    <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="INTERNAL">AE_DETAILS_GET_ERROR</SAP:Code>
      <SAP:P1>af.exi.bomw076a</SAP:P1>
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText>3: No service user name found for Integration Server is.00.bomw076a</SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Error when reading the access data (URL, user, password) for the Adapter Engine af.exi.bomw076a</SAP:Stack>
    Kindly tell me steps I should take to resolve the issue.

    Hi,
    AS far as BPM is considered.I have already tried the following scenario with all the container elements in place for the BPM but in that case It said that there is a step missing in the BPM.
    Scenario:
    Here the input parameter for the RFC is sent through a file and the response from the RFC comes into XI which is then written into a file. The diagram of the following is shown below:
    Fig1. File to RFC Synchronous Scenario
    Design Steps:
    ·  Import the RFC (BAPI_COMPANY_GETDETAIL) which is available in SAP systems.
    ·  Create two Data Types FileRequest_DT and FileResponse_DT as shown below
    Fig2.Input File Data Type
    Fig3.Output File Data Type
    ·  Create Message Type FileRequest_MT and FileResponse_MT for both the data types as shown below
    Fig4.Input File Message Type
    Fig5.Output File Message Type
    ·  Create Message Interface for the message types as shown below
    Fig6.Message Interface of Input File
    Fig7.Abstract Interface of Input File
    Fig8.Message Interface of Output File
    Fig9.Abstract Interface of Output File
    Fig10.Abstract Interface of RFC
    ·  Create Message Mappings Request_MM(File to RFC) and Response_MM(RFC to File )as shown below
    Fig11.Request Message Mapping
    Fig12.Response Message Mapping
    ·  Create the Interface Mapping File_RFC_IM as shown below
    Fig13.Request Interface Mapping
    Fig14.Response Interface Mapping
    ·  Create BPM File_RFC_BPM as shown below
    Fig15.BPM
         In the following BPM the first block receives the file and hence triggers the BPM.The second block is a synchronous send block which triggers the call to RFC, takes the output and sends it further to the Asynchronous send step. The third step finally sends data to a file.
    Configuration Steps:
    ·  Create an Integration Process File_RFC_BP for the BPM which we have created in Design.
    ·  Create three Communication Channel FileRFC_Send, RFC_Reciever and FileRFC_Recieve as shown below-
    Fig15.File Sender Channel
    Fig16.RFC Receiver Channel
    Fig17.File Receiver Channel
    ·  Create a Sender Agreement for sending file
    Fig24.Sender Agreement
    ·  Create three Receiver Determination as shown below
    Fig18.Receiver Determination for File ->Integration Process
    Fig19.Receiver Determination for Integration Process->R/3
    Fig20.Receiver Determination for Integration Process ->File
    ·  Create three Interface Determination as shown below
    Fig21.Interface Determination b/w File Service and Business Process
    Fig22.Interface Determination b/w Business Process and R/3
    Fig23.Interface Determination b/w Business Process and File Service
    ·  Create two Receiver Agreement one for the RFC and other for file as shown below
    Fig25.Receiver Agreement for RFC
    Fig26.Receiver Agreement for File
    Input:
    The xml content which we are sending in the Info.xml file
    The Info.xml file placed in the Input folder will be picked and deleted since the processing mode is delete.
    Output:
    The xml content which will receive in the Detail.xml file as output.
    The Detail.xml is created in the output folder.
    Arpit Seth is a core team member of Satyam SAP Netweaver team.
    Post all the Questions in XI forum.
    Comment on this weblog
    Showing messages 1 through 7 of 7.
    Titles Only      Main Topics      Oldest First
    ·     Nice demo
    2005-07-11 23:36:33 Karthik Sunil Business Card
    ·     Good Illustration
    2005-06-27 07:13:28 Sridhar Rajan Natarajan Business Card
    Hi Arpith,
    Good blog...
    I don't think backslash ("") is a part of URN character set.
    Regards,
    Sridhar
    o     Good Illustration
    2005-06-27 07:57:25 Sudhir Porumamilla Business Card
    Sri we can even use "" while defining namespaces in SWCV
    Cheers
    Sudhir
    §     Good Illustration
    2005-06-27 12:26:43 Sridhar Rajan Natarajan Business Card
    Hi Sudhir,
    Are you sure that is the "right" way of naming a URN? Please let me know
    It may be allowing you to do so because i think its automatically % encoded on using a excluded character ""
    The general syntax for naming a URN is:
    Regards,
    Sridhar
    §     Good Illustration
    2005-06-27 21:01:14 Sudhir Porumamilla Business Card
    >>Right way
    Well sri...:-) ...if u r talkin abt right way...then even i won't prefer "".
    But i thot u were askin whether namespaces are allowed using this character"" in a technical error sense
    Cheers
    ·     Nice blog dude !!
    2005-06-27 06:58:36 Sudhir Porumamilla Business Card
    Cheers
    o     Nice blog dude !!
    2005-06-29 05:11:53 siva maranani Business Card
    Real cakewalk for newbies...
    Cheers,
    Siva Maranani

  • Two FTPAdapters triggers one BPEL-Process in Cluster

    I have defined two ftp-adapters getting two different csv-files (different file structures) of the ftp-server. These ftp-adapters triggering a bpel-process starting with a pick-activity containing two onmessage-branches. In the first onmessage-branch there is a transformation transforming format A into a common format. In the second onmessage-branch there is a transformation transforming format B into a common format. With this common format some other actions are processed (not relevant for this problem).
    Because i have a clustered environment (cluster of two soa-suite installations 10.1.3.1) i want only one clusternode triggering my bpel-process. so i set the property clusterGroupId of the activationAgent inside of the bpel.xml. Because i have two triggering ftp-adapters i defined two different clusterGroupIds to prevent to have a influence between this two ftp-adapters.
    The problem is that the application-server now is logging every second the following warning and i don't know if this is a problem or not. both ftp-adapter works fine but i think it will not work in cluster.
    WARNING: discarded message from different group "unbarring_group" (our group is "barring_group"). Sender was10.32.7.156:16325
    Jun 26, 2007 2:05:39 PM org.collaxa.thirdparty.jgroups.protocols.TP handleIncomingMessage
    WARNING: discarded message from different group "unbarring_group" (our group is "barring_group"). Sender was10.32.7.156:16325
    Jun 26, 2007 2:05:40 PM org.collaxa.thirdparty.jgroups.protocols.TP handleIncomingMessage
    WARNING: discarded message from different group "barring_group" (our group is "unbarring_group"). Sender was10.32.7.156:16321
    Jun 26, 2007 2:05:41 PM org.collaxa.thirdparty.jgroups.protocols.TP handleIncomingMessage
    WARNING: discarded message from different group "barring_group" (our group is "unbarring_group"). Sender was10.32.7.156:16321
    Jun 26, 2007 2:05:43 PM org.collaxa.thirdparty.jgroups.protocols.TP handleIncomingMessage
    WARNING: discarded message from different group "barring_group" (our group is "unbarring_group"). Sender was10.32.7.156:16321
    Jun 26, 2007 2:05:43 PM org.collaxa.thirdparty.jgroups.protocols.TP handleIncomingMessage
    WARNING: discarded message from different group "barring_group" (our group is "unbarring_group"). Sender was10.32.7.156:16321
    Jun 26, 2007 2:05:48 PM org.collaxa.thirdparty.jgroups.protocols.TP handleIncomingMessage
    WARNING: discarded message from different group "unbarring_group" (our group is "barring_group"). Sender was10.32.7.156:16325
    Jun 26, 2007 2:05:49 PM org.collaxa.thirdparty.jgroups.protocols.TP handleIncomingMessage
    I have also tried to use only one clusterGroupId but if i do so only one ftp-adapter is initiating my bpel-process. so why does this usecase does not work with using one clusterGroupId???
    bpel.xml
    <BPELSuitcase>
    <BPELProcess id="Service_Barring_TAS" src="Service_Barring_TAS.bpel">
    <partnerLinkBindings>
    <partnerLinkBinding name="ReadBarringFiles">
    <property name="wsdlLocation">ReadBarringFiles.wsdl</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="ReadUnbarringFiles">
    <property name="wsdlLocation">ReadUnbarringFiles.wsdl</property>
    </partnerLinkBinding>
    </partnerLinkBindings>
    <activationAgents>
    <activationAgent className="oracle.tip.adapter.fw.agent.jca.JCAActivationAgent" partnerLink="ReadBarringFiles">
    <property name="clusterGroupId">barring_group</property>
    <property name="FileInputDirBarring" type="LogicalDirectory">/Mahnung/bar</property>
    <property name="portType">Get_ptt</property>
    </activationAgent>
    <activationAgent className="oracle.tip.adapter.fw.agent.jca.JCAActivationAgent" partnerLink="ReadUnbarringFiles">
    <property name="clusterGroupId">unbarring_group</property>
    <property name="FileInputDirUnbarring" type="LogicalDirectory">/Mahnung/unbar</property>
    <property name="portType">Get_ptt</property>
    </activationAgent>
    </activationAgents>
    </BPELProcess>
    </BPELSuitcase>
    Message was edited by:
    harald.reinmueller

    Hi,
    I am also seeing the same warn messages. And on our production we got OutOfMemory exception. Is there any setup we need to change to get rid of this error message? did you get the solution?
    11/09/08 10:12:25 Exception in thread "MERGE2.FindSubgroups thread" java.lang.OutOfMemoryError: Failed to create a thread: retVal -1073741830, errno 11
    11/09/08 10:12:25 at java.lang.Thread.startImpl(Native Method)
    11/09/08 10:12:25 at java.lang.Thread.start(Thread.java:979)
    11/09/08 10:12:25 at org.collaxa.thirdparty.jgroups.protocols.PingWaiter.start(PingWaiter.java:51)
    11/09/08 10:12:25 at org.collaxa.thirdparty.jgroups.protocols.Discovery.down(Discovery.java:303)
    11/09/08 10:12:25 at org.collaxa.thirdparty.jgroups.stack.Protocol.receiveDownEvent(Protocol.java:517)
    11/09/08 10:12:25 at org.collaxa.thirdparty.jgroups.stack.Protocol.passDown(Protocol.java:551)
    11/09/08 10:12:25 at org.collaxa.thirdparty.jgroups.protocols.MERGE2$FindSubgroups.findInitialMembers(MERGE2.java:305)
    11/09/08 10:12:25 at org.collaxa.thirdparty.jgroups.protocols.MERGE2$FindSubgroups.run(MERGE2.java:263)
    11/09/08 10:12:25 at java.lang.Thread.run(Thread.java:810)
    11/09/08 10:13:35 java.lang.OutOfMemoryError: Failed to create a thread: retVal -1073741830, errno 11
    11/09/08 10:13:35 at java.lang.Thread.startImpl(Native Method)
    11/09/08 10:13:35 at java.lang.Thread.start(Thread.java:979)
    11/09/08 10:13:35 at com.evermind.util.ReleasableResourcePooledExecutor.addThread(ReleasableResourcePooledExecutor.java:236)
    11/09/08 10:13:35 at EDU.oswego.cs.dl.util.concurrent.PooledExecutor.execute(PooledExecutor.java:997)
    11/09/08 10:13:35 at com.evermind.util.ThreadPool.launch(ThreadPool.java:283)
    11/09/08 10:13:35 at com.evermind.server.rmi.RMIServerConnection.startConnection(RMIServerConnection.java:141)
    11/09/08 10:13:35 at com.evermind.server.rmi.RMIServer.createRMIServerConnection(RMIServer.java:812)
    11/09/08 10:13:35 at com.evermind.server.rmi.RMIServer.connect(RMIServer.java:805)
    11/09/08 10:13:35 at com.evermind.serv

  • FTP adapter with application acknowledgment

    Hello,
    I like to send a file with an FTP adapter to an "in" folder and configure a sender FTP adapter to pick up files from an "out" folder.  I'd like to us a BPM and have the BPM determine if the returning file is pointing to an error and send an alert.  This is my manual way to create an application acknowledgment.
    So my BPM needs a Receive, Send and then another Receive step.  Has anyone done this before?  Or is there some good documentation on this process?
    Thanks,
    Matt

    Some misunderstanding I guess
    I was explaining to use UDF to raise alert message, say for example using this
    Triggering XI Alerts from a User Defined Function
    Checking file for error should be based on the business logic used by the receiver system. XI won't understand in itself that the file has error. There must be some business requirement that should be checked.
    Regards,
    Prateek

  • FTPS or SFTP for file scenario. Suggstions

    Hi,
    I have searched blog in sdn but do not get good blogs/links.
    For File scenario which to use FTPS or SFTP.
    How to do the configuration in XI and Visual admin.
    Full points will be awarded.

    Hi,
    1) SFTP (Secure File Transfer Protocol)
    "SSH File Transfer Protocol" or SFTP is a network protocol that provides file transfer and manipulation functionality over any reliable data stream. It is typically used with the SSH-2 protocol to provide secure file transfer. SFTP encrypts the session, preventing the casual detection of username, password or anything that is being transmitted. One key benefit to SFTP is its ability to handle multiple secure file transfers over a single encrypted pipe. By using a single encrypted pipe, there are fewer holes in the corporate firewall.
    SFTP:
    As per the latest SAP PI/XI support pack, it does not support SFTP via File Adapter.
    So alternative approach to cater this requirement from XI is to make use of Unix Script at OS level to transfer the files from/to third-party systems.
    Inbound Interface - i.e. third-party system ->XI->SAP: 
    File is transferred to a folder in SAP XI landscape from the third-party legacy system using UNIX Script with secured protocol. Once the file is ready in the XI landscape, File Adapter will poll this directory and file is picked up by NFS protocol.
    Outbound Interface – i.e. SAP->XI->third-party system: 
    XI is responsible for writing a file into a folder in the XI landscape. These files are transferred to the third-party system by executing UNIX scripts with secured protocol i.e. via sFTP.
    Pre-Requisites: 
    Public key should be exchanged between external systems and the PI system.
    UNIX shell script has to be developed and scheduled.
    Advantages: 
    Highly Secured.
    Ability to handle multiple secure file transfers over a single encrypted pipe .By using a single encrypted pipe, there are fewer holes in the corporate firewall.
    Disadvantages:
    Two-Step process i.e. XI>Temporary folder>External System and vice-versa
    Files have to be temporarily stored in XI server.
    Multiple failure points i.e. XI and Unix script execution
    Maintenance of an external UNIX script.
    Difficulty in monitoring the execution of the shell script as it cannot be monitored thru XI.
    Need to generate keys and install it in the SFTP site as a pre-requisite i.e. SFTP clients must install keys on the server.
    SFTP uses keys rather than certificates. This means that it can't take advantage of the "chains of trust" paradigm facilitated through Certificate Authorities.
    Files from the XI server should be deleted/archived in a periodic manner to increase the disc space so that it will increase the performance.
    Note: UNIX shell Script can be executed as a background job ‘or' can be triggered from SAP XI through OS command at File adapter level.
    Secure FTP (SSH) with the FTP Adapter
    Secured File Transfer using SAP XI
    Secure FTP in SAP XI
    SFTP (FTP over SSH) in XI
    /people/krishna.moorthyp/blog/2007/07/31/sftp-vs-ftps-in-sap-pi
    encryption adapters or how to secure data
    /people/krishna.moorthyp/blog/2007/07/31/sftp-vs-ftps-in-sap-pi
    Regards,
    Phani
    Reward points if Helpful

  • FTP Adapter File Polling does not raise error when FTP server is down

    Hi All,
    Thanks in advance.
    I am polling for new files in a FTP Server. However, if the server is down there is no way for me to catch the fault to notify someone. I am using fault-policies but that never gets triggered when polling an unavailable FTP Server.
    One option is to have a completely separate scheduled process (SOA or not) that tries to connect to the servers but I am trying not to go that route just to keep things manageable and within the realm of the process.
    I am sure that I am not the only one polling for new files in a FTP Server, so I thought to pick your brain to tackle this scenario.
    Thanks for taking the time to read this.

    I was contacted by our DBA team for an exception received while writing a file to a FTP location.
    Then i looked at the exception message and asked them to check the whether they are able to contact the ftp server using command prompt then they said the user password got expired.
    They reset the password and its working now.
    Am i missing something here :(
    Exception:
    WSIF JCA Execute of operation 'Put' failed due to: Error sending file to FTP Server.
    Unable to send file to server.
    ; nested exception is:
    ORABPEL-11429
    Error sending file to FTP Server.
    Unable to send file to server.
    Please ensure 1. Specified remote output Dir has write permission 2. Output filename has not exceeded the max chararters allowed by the OS and 3. Remote File System has enough space.
    Thanks,
    Vijay
    Edited by: veejai24 on 25-Jul-2012 07:10

  • Trigger alert for file not existing in sender FTP server

    Hi all,
    I have a scenario file to file.In the sender FTP server a file is placed every 3hours.If file is present it will work in the normal file to file procedure.But when no file exists it should trigger an alert.
    Scripts on FTP server is not accepted as a solution.
    Can anyone let me know how this requirement can be achieved.
    Points will be awarded generously.
    regards,
    padma

    Hi
    But when no file exists it should trigger an alert.
    EMAIL can be used : assign an EMAIL ID to the corresponding user in the transaction SU01 and then set up SCOT and you can send emails when the ALERT is triggered.
    Once you have configure Alerts, you will get the Alerts into ALERT INBOX in RWB of the user. To also get the email, the following needs to be done,
    1. In SU01 -- Assign the Email ID for the Recipient of the ALERT.
    2. In , RWB>ALERT INBOX> PERSONALIZATION--> Time Independent Delivery and Email are selected.
    3. Finally, SCOT needs to be set up to send Emails. Check this for the same. You can ask your BASIS team to do this step.
    http://help.sap.com/saphelp_nw04/helpdata/en/23/1edf098ea211d2b47300609419ed29/frameset.htm
    Also, In ALRTCATDEF, go to SETTINGS--> CONFIGURATION. By default, the option selected is INTERNAL PROCESSING. Select the option SMTP FORWARDING AS XML and give the email id. This will enable you to send an email alert whenever an error occurs in XI.
    Also, to test your Alerts, execute the report RSALERTTEST in SE38.
    Also go throuh the following links...
    The specified item was not found.
    The specified item was not found.
    http://help.sap.com/saphelp_nw04/helpdata/en/3f/81023cfa699508e10000000a11402f/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/80/942f3ffed33d67e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/2b/d925bf4b8a11d1894c0000e8323c4f/frameset.htm
    Configuring scenario specific E-mail alerts in XI-CCMS: Part 3
    Configuring scenario specific E-mail alerts in XI-CCMS: Part 3
    Configuring scenario specific E-mail alerts in XI-CCMS: Part-2
    Configuring scenario specific E-mail alerts in XI-CCMS: Part-2
    Configuring scenario specific E-mail alerts in XI-CCMS: Part u2013 1
    Configuring scenario specific E-mail alerts in XI-CCMS: Part  - 1
    Regard's
    Chetan Ahuja

  • Communication Channel marked all files as being read on FTP

    The Mailbox FTP has all the files flagged as being read when a single file is read through a communication channel.  I manually unflagged the status field so all files had a status of N so none were pulled.  I had 14 files for this test flagged as N.   I turned off all our CCu2019s.  I activated one that was pulling the last file in the list based on the Service Ref# which is unique file name.  I refreshed the dir of the FTP several times as the CC was running.  One by one as the flag was changed to Y (file read) from top to bottom.  It only took a second for each one until it got to three very large files and the status stopped while it was reading the file.  After a minute it continued to change the flag until it read the last one.   All 14 files on the ftp now had the status flag changed to Y.  It appears it actually read the file content one by one and set the flag until it was done.  Do you have any ideas why it would do this?  From a dos prompt I donu2019t have any of these issues so Iu2019m guessing itu2019s something unique in the SAP FTP adapter that is doing it?
    From a dos prompt I can successfully do a get 003520827870964903 c:data.txt and it will only update that ST flag for that one file as being read.  I can also do a get %EDT39A22%W_Z1JI4960 c:data.txt  and it will only flag the four files as being read that have that Mailbox/APRF value.  Now I'm trying to get my CC to do the same but no matter what I try it marks all six files as being read.   I have in my source directory %EDT39A22%W_Z1JI4960 and * for a file name and this will mark all files as being read when activated.   I have entered 003520827870964903 for a file name to further qualify and it still marks all files as being read.  It seems to be getting the file I want cause when I view the communication channel monitor it shows the right data in the payload but it always refers to another file for the archive / delete / test option from the processing tab.  There are no problems having a CC write a file out using similar parms for Mailbox/APRF, but trying to read a single file using the Service Ref # or a collection of files using a Mailbox/APRF mask seem to update the status for all files as being read.  Any suggestions are welcome.
    Mailbox ID           St    APRF                SNRF              Service Ref. #
    CMS                  N     CCR_GRIEF           filekh5LhC0000    003520599937481654
    CMS                  N     CLAIM_STLMNTS       fileza2TBr0004    003520769829611413
    EDT39A22             N     W_Z1JI4960          ileh3s0e60000     003520827846664146
    EDT39A22             N     W_Z1JI4960          fileUfXjR     003520827868994913
    EDT39A22             N     W_Z1JI4960          filePDFfKP0000    003520827870124419
    EDT39A22             N     W_Z1JI4960          fileQ7RFdR0000    003520827870964903
    Edited by: Kenbrown on Jul 28, 2011 9:10 PM
    Edited by: Kenbrown on Jul 28, 2011 9:13 PM

    Have you installed any apps that auto display the emails when they come in? If so the auto read feature may be triggering this, I had a app at one time that showed my emails in the preview window and it made the emails be listed as read... I would check your apps and make sure you are not using something like this unknowingly.

  • Exception not triggered after 4 acknowledgement failures.

    Hi,
       I have an FTP Sender, When i am sending the file to FTP site. the send step is defined as throwing send exception and send exception is handled in send exception handler where i cancel the process. The send step is defined with acknowledgement as "Transport".
    I have FTP address wrongly spelt.
    So the BPM tries 4 times, with 5 min duration between retires. Then after the 4tn try i am expecting the send step to throw send exception. It does not do that.
    Could you please let me what changes i have to do to catch this acknowledgement exception.
    I also have a deadline exception. but i dont want this to go into the deadline exception. Can i catch this exception in send exception.
    Regards,
    Vinay.

    Hi,
    In IMG - Materials Management- Purchasing-Messages - Fields relevant to Print out of changes
    Enter Table EKPO , Reference Field LOEKZ, tick on change print relevant for purchase order,in routine enter 03.
    Now your Output will be triggered with a change indicator and you can process it using ME9F.
    Regards
    Chandra Shekhar

Maybe you are looking for

  • How do I close all apps at once

    The shutdown procedures in Lion are broken (IMHO). Shutdown should mean shutdown, not sleep/standby. This is a powerful computer, not some cheap portable toy. Multiple apps is not a bolt on but a norm. In another thread there seems to be no apparent

  • Ipod and iF2 portable speakers - preventing standby mode kicking in.

    I have recently purchased both an iPod video and the Sonic Impact i-F2 portable speakers. There is and auto standby on the speakers which means that if they are 'idle' for more than 5 mins they shut down. Does anyone know how I prevent the speakers f

  • Nano cannot be restored "cant mount", battery icon with exclamation point

    My ipod nano is showing a battery icon with an exclamation point whenever i reset it I get the same icon. When ever i connect it to my computer the updater wont acknowledge that it is plugged into the computer. Whenever its plugged into the computer

  • 2 Centros needing to have the SAME contents

    I have used PALM for years. I have upgraded to a Centro to keep from having to carry 2 different hand held around (phone & palm). My husband also has a Centro. We would like to be able for our phones to have the exact same information. When I sync hi

  • For-loop & iterator.remove()

    Is it possible to remove an item during iterating with for-loop? for (SelectionKey opKey : selector.selectedKeys())      // I need to remove opKey from selectedKeys set. }Is it really necessary to remove handled key from selectedKeys set? What will h